Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I'm needing to create a new column/measurement based on a conditional count from other columns. The new column needsto be a count of how many months each row did not achieve a certain %. The columns being counted will change at the end of each month.
Solved! Go to Solution.
That shouldn't be too difficult. Something like this:
My Measure :=
SUMX(VALUES('DimDate'[Month]), IF(ActualAvgMeasure < TargetPct, 1, 0))
I hope you got the logic/approach. This assumes that the month granularity will be there in the visual at all times.
That shouldn't be too difficult. Something like this:
My Measure :=
SUMX(VALUES('DimDate'[Month]), IF(ActualAvgMeasure < TargetPct, 1, 0))
I hope you got the logic/approach. This assumes that the month granularity will be there in the visual at all times.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |