Forum Discussion
Buget vs Actual on one single table
It worked, but sorry, I thought it was not relevant, but I am using a date table to filter the sales table.
CalendarTable Sales
Date <-----------------------------> Date
Month CCenter
Day Account
Year Budget
Actual
Description
So using the measure that you said does not works when I use slicers with CalendarTable's columns.
Anonymous
Try this DAX
TotalbudgetbyMonth =
var maxvalue = SUMX(SUMMARIZE(DateTable,DateTable[Month],"amt",MIN(Table1[Budget])),[amt])
return
maxvalue
- Anonymous7 years agoNot applicable
avknishokpbi, almost working.
When I use a drill down, it shows the smallest value intead of the sum.