Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
Anonymous
Not applicable

Create a new conditional column

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.

 

sb14415_0-1675793246062.png

 

1 ACCEPTED SOLUTION
JirkaZ
Solution Specialist
Solution Specialist

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.

View solution in original post

1 REPLY 1
JirkaZ
Solution Specialist
Solution Specialist

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.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.