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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Need help to set column value as Zero for specific row of matrix table

Hi Team,

 

I am trying to replace value of column estimated Funding to zero for rows having description as "Capco" and "Connex SOW -- Non SRE"  These rows are coming from field "Description" and value is ProjectCost.

I have tried creating column Test but resut is giving zero value to Total of category "CCS Staff Augmenation" too. Category is another row of matrix table. 

 

Test = IF(('ClarityMaster'[Description]="Capco") || ('ClarityMaster'[Description]="Connex SOW -- Non SRE"),

0,'ProjectEstimate'[ProjectCost])

 

CCS Staff Augmenation  should be 1114727 and description rows "Capco" and "Connex SOW -- Non SRE" should show 0.

 

Really appreciate if anybody can help here !!

ashish_18_0-1741145131482.png

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, 

I am not sure how your semantic model looks like, but I assume you tried to create calculated column.

Please try creating measure, something like below.

I tried to create a sample pbix file like below, and please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1741147234482.png

 

 

Test measure: = 
SWITCH (
    TRUE (),
    ISINSCOPE ( ClarityMaster[description] ),
        IF (
            MAX ( ClarityMaster[description] ) = "Capco"
                || MAX ( ClarityMaster[description] ) = "Connex SOW -- Non SRE",
            0,
            SUM ( ClarityMaster[funding] )
        ),
    SUM ( ClarityMaster[funding] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, 

I am not sure how your semantic model looks like, but I assume you tried to create calculated column.

Please try creating measure, something like below.

I tried to create a sample pbix file like below, and please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1741147234482.png

 

 

Test measure: = 
SWITCH (
    TRUE (),
    ISINSCOPE ( ClarityMaster[description] ),
        IF (
            MAX ( ClarityMaster[description] ) = "Capco"
                || MAX ( ClarityMaster[description] ) = "Connex SOW -- Non SRE",
            0,
            SUM ( ClarityMaster[funding] )
        ),
    SUM ( ClarityMaster[funding] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

Thank you so much for your insights @Jihwan_Kim  I will try with this code and let you know if any issues.. Thanks again!!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.