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

Making Column with static measure-value but only for specific rows

Hi everyone!

 

I'm having some problem, with writing formula.

I have this in matrix:

 

BIAS 3 ostatnie 1.PNG

Where Company and Week/Year are Columns, that cant be pivoted, and Value is some Measure:

 

BIAS_W_12 = IFERROR((SUM('DPA BIAS'[Final CDP W-12])-SUM('DPA BIAS'[Order Quantity]))/SUM('DPA BIAS'[Final CDP W-12])*100;0)

 

I want to make a Column for every of this weeks where i will have a value of a measure, when week is ok, 0 otherwise.

Can you help me how to do it?

I'm stuck for a few hours now.

Thank You

Radkos

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

You may try the following pattern.

Measure =
VAR w = SELECTEDVALUE ( Table1[Week/Year] ) RETURN IF ( w = 12, 1, 0 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

You may try the following pattern.

Measure =
VAR w = SELECTEDVALUE ( Table1[Week/Year] ) RETURN IF ( w = 12, 1, 0 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.