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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
ashish_18
Helper III
Helper III

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

(Virus scan in progress ...)
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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

(Virus scan in progress ...)

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