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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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"),
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 !!
Solved! Go to Solution.
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.
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] )
)
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.
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] )
)
Thank you so much for your insights @Jihwan_Kim I will try with this code and let you know if any issues.. Thanks again!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 32 | |
| 19 | |
| 12 | |
| 10 |