Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I'm having some issues displaying the total result of a Measure with IF statment.
I have this column, based on the following measure:
Solved! Go to Solution.
Hi,
Please try something like below whether it suits your requirement.
VAL_BASE_CALC_SERV_PREST =
SUMX (
VALUES ( 'table_name'[culumn_name_in_the_visualization] ),
IF (
[VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] > [VAL_SERV_PREST],
[VAL_SERV_PREST],
IF (
[VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] <= 0,
0,
( [VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] )
)
)
)
Hi,
Please try something like below whether it suits your requirement.
VAL_BASE_CALC_SERV_PREST =
SUMX (
VALUES ( 'table_name'[culumn_name_in_the_visualization] ),
IF (
[VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] > [VAL_SERV_PREST],
[VAL_SERV_PREST],
IF (
[VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] <= 0,
0,
( [VAL_MAX_CONTRIB] - [VAL_BASE_OF_II] )
)
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |