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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
Sign up to receive a private message when registration opens and key events begin.
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 |
|---|---|
| 36 | |
| 28 | |
| 28 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |