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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
It sounds like you have 90 rows in your apps table so it is returning a 1 and then suming them to give you 90. Tyre the measure more like this and see if that helps.
Your Measure =
IF (
SELECTEDVALUE ( apps[apps_month_period] ) = "Current Month"
&& SELECTEDVALUE ( 'apps'[app_category] ) IN { "Test" },
1,
'apps'[amount]
)
Did you take out the SUMX part?
It sounds like you have 90 rows in your apps table so it is returning a 1 and then suming them to give you 90. Tyre the measure more like this and see if that helps.
Your Measure =
IF (
SELECTEDVALUE ( apps[apps_month_period] ) = "Current Month"
&& SELECTEDVALUE ( 'apps'[app_category] ) IN { "Test" },
1,
'apps'[amount]
)
Thanks for your suggestion. I have tried adding in SELECTEDVALUE but I am still getting the same value of 90.
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 |
|---|---|
| 93 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |