Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello every one,
I created a report which get the live data from ssas, and i tried to create calculated measuer in ssas using this code
(SUM([Measures].[Budget]) ,[JE Type].[JE Type].&[CI],[JE Type].[JE Type].&[NR],[AccountType].[Account Type].&[Bank],[AccountType].[Account Type].&[Cash],[AccountType].[Account Type].&[NotesReceivable])
But i get this value as null, so there's any way to create this measuer in powerbi directly?
I want to sum all Budget Values from my fact measuers with the filter of:
1. [JE Type] dim = ("CI","NR)
2. [Account Type] dim = ("Cash","Bank","NotesReceivable")
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Abdalmoamen,
Try the following code for the DAX Measure:
Sales_SUM =
CALCULATE (
[Budget];
Table[JE Type] IN { "CI"; "NR" };
Table[Account Type] IN { "Cash"; "Bank"; "NotesReceivable" }
)Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCan't create this measuer in ssas cube
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCan't create any measuer under live query mode
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 40 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 61 | |
| 45 |