Hi,
I am having difficulty with my formulas referencing summary sheet cells.
My goal is to indicate a date range in the summary sheet cells, input a customer, and have it a summary cell show the sum of all of the quoted jobs for that customer with in the specified date range. My customers are in a multi check box drop down since more than one will bid on a job.
I was able to get the customer part to work:
=SUMIFS([Quoted Value]:[Quoted Value], [Customers Bidding]:[Customers Bidding], CONTAINS([Customer (Contains)]#, @cell), Status:Status, "quoted")
But when I tried to add the date range, I am getting #invalid operation. If I put an AND at the start of the bid date criteria, I get #invalid data type.
=SUMIFS([Quoted Value]:[Quoted Value], [Customers Bidding]:[Customers Bidding], CONTAINS([Customer (Contains)]#, @cell), Status:Status, "quoted", [Bid Date]:[Bid Date], >=[Start Date]#, @cell, <=[End Date]#)
What am I missing?
Thanks,