Forum Discussion
moesteez
Helper I
5 years agoSUM quantity on a specific date
Im having a really hard time with a relaly basic measure but I cant figure out what Im doing wrong. Ive got a quantity measure that sums a quantity column that works fine I have a calendar table...
- 5 years ago
Try this measure. You had the argument order wrong in the DATE function.
Measure = CALCULATE ( [Quantity], 'Calendar'[Date] = DATE ( 2021, 07, 07 ) )
DataInsights
Super User
5 years ago
Try this measure. You had the argument order wrong in the DATE function.
Measure =
CALCULATE ( [Quantity], 'Calendar'[Date] = DATE ( 2021, 07, 07 ) )