I have a rollup sheet. I am needing a cross sheet formula to calculate total quote for a specific sales rep.
See screen shots below.
Thanks so much your help. I really do appreciate it!
looks like a bunch of stacked sumifs.
sumif({name column reference},[Quote Information]@row,{Total Door Costs Reference}) + sumif({name column reference},[Quote Information]@row,{Total Drawer Boxes})
Or something like that.
perfect. that's what I needed to get me started.
Thanks!
if I just wanted the total quotes for sales person "Isaac Soto" would this work
=SUMIFS({CRS Multi-Family Total Quote}, {CRS Multi-Family Quote Form Sales Rep}, "Isaac Soto")
where mulit-family quote form sales rep is the range where I am looking for the data, and CRS Multi-family total quote is the column where the actual data im looking for. and Isaac Soto is the sales person. This seems to work for now. Im wondering if will hold up down the road?
thanks,
SGF
It should hold up, but I would suggest using a cell reference instead of actual text in your formula to save yourself from having to edit multiple times.
=SUMIFS({CRS Multi-Family Total Quote}, {CRS Multi-Family Quote Form Sales Rep}, [Quote Information]@row)
This will have the formula looking in the Quote Information column on whatever row the formula happens to be in so it will automatically update itself to look for that particular name.
I want to push the latest status log sheet entry to the dashboard. I have added working columns for the last date, recent value (0 or 1) and recent status (text field). The recent columns are blank except for the most recent data rows (that part of the sheet is working). I have a project metric sheet template across topics…
Hi - I am trying to figure out how to create a SUM of the Total Project Time aligned to each PM for all of their projects. On my master sheet I have the Resource Type, Resource Name, and a Helper Column for Time. The Helper Time is an estimated allotted time based on the timeframe of the project. Example: <3 months = 25…
I am looking to count how many letters we have issued within each month, this is by going by the modified date, these are the formulas i have tried as i want to start this from August: =COUNTIFS(Modified:Modified, MONTH(@cell ) = 8, Modified:Modified, YEAR(@cell ) = 2025) However, it comes up with an error. Any ideas…