This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. 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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 37 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 56 | |
| 31 | |
| 27 | |
| 22 |