Forum Discussion
superbird
3 years agoFrequent Visitor
Measure does not total
Hi everyone, I have the below formula to calculate 1st Month's sales. 1st Month's Sales = CALCULATE ( SUM( 'Total-Combined'[Amount] ), FILTER ( ALL ( 'Total-Combined'[T...
Ashish_Mathur
3 years agoSuper User
Hi,
Create a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort the Month name column by the Month number. Create a relationship (Many to One and Single) from the Date column of the Data Table to the Date column of the Calendar Table. Write these measures
Total = sum('Total-Combined'[Amount])
Sale in first month = calculate([Total],datesbetween(Calendar[Date],min(Data[Date]),eomonth(min(Data[Date]),0)))
Hope this helps.
- superbird3 years agoFrequent Visitor
Thankyou Ashish, what if I wanted the 2nd month's sales and the 3rd month's sales?
- Ashish_Mathur3 years agoSuper User
You are welcome. Share data in a format that can be pasted in an MS Excel file and show the expected result.