Forum Discussion
Anonymous
10 years agoNot applicable
Release filter by drill down level
Hello, I'm trying to show accounting data to the user with PowerBI. The user needs to see trail from the account to the journal entry. Level 1 is the Accounts and their sum. Level 2 is th...
- 10 years ago
You should write the meaure such as this.
Measure1:=CALCULATE(SUM[AMOUNT]),ALL(Table[Accounts])
Measure2:=CALCULATE(SUM[AMOUNT]), Table[Accounts]="1030")
Measure3:=CALCULATE(SUM[AMOUNT]),ALL(Table[Journals]
And Drag and drop them around and it would solve your problem.
BhaveshPatel
10 years agoSuper User
You should write the meaure such as this.
Measure1:=CALCULATE(SUM[AMOUNT]),ALL(Table[Accounts])
Measure2:=CALCULATE(SUM[AMOUNT]), Table[Accounts]="1030")
Measure3:=CALCULATE(SUM[AMOUNT]),ALL(Table[Journals]
And Drag and drop them around and it would solve your problem.