I am trying to create a sheet summary that will sum my Count column when the corresponding rows have a Status of Closed and the Request Type is Product Update. (In other words, if the status of this line is "Closed" and the request type is "Product Update" then sum the count column for all rows that meet this criteria.
The Count column is Text/Number, Status is Drop Down (Single Select), Request Type is (Single Select)
Everything I have tried so far will return #UNPARSEABLE. I have confirmed that everything is spelled correctly and I believe I have all the proper syntax.
=SUMIFS(Count:Count, Status:Status, Closed, Request Type:Request Type, Product Update)
=SUMIFS(Count:Count, "Status:Status", Closed, Request Type:Request Type, "Product Update")
=SUMIFS(Count:Count, Status:Status, @cell =Closed, Request Type:Request Type, @cell= Product Update)
=SUMIF(Status:Status, "Closed", Count:Count) This works for me when I do not have to count based on the Request Type column but in this specific sheet I have two different Requests Types so I need a summary for "Product Update" and "Promotion Update".