Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a measure which is returning a percentage from 0-100% and I have a matrix table with 4 level (1 - highest, 4 - transactional level).
What I would like to achieve is that based on my measure I would like to have another measure which is returning "1" on the level 4th (transactional) and have a second calculation which will summarize the 4th level's "1" on the 3rd level
Elementary_KPI = the KPI which result is from 0% to 100%
--------------------------------------------------------------------------------
Solved! Go to Solution.
Hi, @Anonymous
Please try formula as below:
CALC_KPI = IF([Elementary_KPI] <> 0,1)+0
SUM_CALC_KPI = SUMX(VALUES('Table'),[CALC_KPI])
BASIC_KPI =
IF (
ISINSCOPE ( 'Table'[4th_level] ),
[SUM_CALC_KPI],
IF ( ISINSCOPE ( 'Table'[3th_level] ), [SUM_CALC_KPI], 'Table'[Elementary_KPI] )
)
result:
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
Please try formula as below:
CALC_KPI = IF([Elementary_KPI] <> 0,1)+0
SUM_CALC_KPI = SUMX(VALUES('Table'),[CALC_KPI])
BASIC_KPI =
IF (
ISINSCOPE ( 'Table'[4th_level] ),
[SUM_CALC_KPI],
IF ( ISINSCOPE ( 'Table'[3th_level] ), [SUM_CALC_KPI], 'Table'[Elementary_KPI] )
)
result:
Best Regards,
Community Support Team _ Eason
Hi @v-easonf-msft,
Thank you so much for the help! One thing, you wrote the following code:
IF ( ISINSCOPE ( 'Table'[3th_level] ), [SUM_CALC_KPI], 'Table'[Elementary_KPI] )
)
I have to modify to that:
IF ( ISINSCOPE ( 'Table'[3th_level] ), [SUM_CALC_KPI], [Elementary_KPI] )
)
With this it is working now.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
38 | |
30 | |
28 |
User | Count |
---|---|
99 | |
88 | |
62 | |
42 | |
39 |