Struggling with a DAX measure that is the base of many other measures.
I have a budget, which has multiple revisions. Its formula right now is calculate(sum(BudgetValue),Department<>Accounting,Group<>Finance)
This works fine, but since I have added a second revision the table now has both the Rev 0 budget values and the Rev 1 budget values.
calculate(sum(BudgetValue),Department<>Accounting,Group<>Finance,Max(Revision)) - This is what I wanted to do, doesn't work...
Thanks in advance.
I have a budget, which has multiple revisions. Its formula right now is calculate(sum(BudgetValue),Department<>Accounting,Group<>Finance)
This works fine, but since I have added a second revision the table now has both the Rev 0 budget values and the Rev 1 budget values.
calculate(sum(BudgetValue),Department<>Accounting,Group<>Finance,Max(Revision)) - This is what I wanted to do, doesn't work...
Thanks in advance.