ssmith3156
New Member
- Joined
- Apr 11, 2023
- Messages
- 15
- Office Version
- 365
- Platform
- Windows
I need a formula that is using the data from the table named "Costs". I need to sum the Hours column IF the Concatenate column has any of these values...162FOL, 392FAL, 392FGL, 392FFL, 392PFL, or 452FGL AND the date is before 6/1/2023. This is what I currently have and it is returning a result of 0 for my sample data, but it should be a sum of 3:
=SUMIFS(Costs[Hours],Costs[Concatenate],"162FOL",Costs[Concatenate],"392FAL",Costs[Concatenate],"392FGL",Costs[Concatenate],"392FFL",Costs[Concatenate],"392PPFL",Costs[Concatenate],"452FGL",Costs[Date],"<2023,6,1")
Am I using the wrong function, or does it just need a modification?
=SUMIFS(Costs[Hours],Costs[Concatenate],"162FOL",Costs[Concatenate],"392FAL",Costs[Concatenate],"392FGL",Costs[Concatenate],"392FFL",Costs[Concatenate],"392PPFL",Costs[Concatenate],"452FGL",Costs[Date],"<2023,6,1")
Am I using the wrong function, or does it just need a modification?