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 am building a new dashboard for my team and I have hit a few hurdles in the DAX commands. I am looking to be able to show a KPI Card to sum up the individual rows compared to the growth %. Currently it is using the logic to only show the growth % total.
This is the formula I am currently using:
However this is what is showing in the KPI Card:
Is there a better way of writing the DAX code to be able to sum this vs comparing to the total growth %?
Solved! Go to Solution.
Hi @brockry1 ,
According to your description, you want to show the sum of Earned in the card view, right? We can use sumx instead of calculate, sometimes calculate affects the normal aggregation.
Rebate Earned =
SUMX(
'Table',
IF(
[Current Year] >= 1250 && [Rebate %] > 0,
[Rebate %] * [Current Year],
0
)
)
Hope it helps!
Best regards,
Community Support Team_ Tom Shen
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @brockry1 ,
According to your description, you want to show the sum of Earned in the card view, right? We can use sumx instead of calculate, sometimes calculate affects the normal aggregation.
Rebate Earned =
SUMX(
'Table',
IF(
[Current Year] >= 1250 && [Rebate %] > 0,
[Rebate %] * [Current Year],
0
)
)
Hope it helps!
Best regards,
Community Support Team_ Tom Shen
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
I am building a new dashboard for my team and I have hit a few hurdles in the DAX commands. I am looking to be able to show a KPI Card to sum up the individual rows compared to the growth %. Currently it is using the logic to only show the growth % total.
This is the formula I am currently using:
However this is what is showing in the KPI Card:
Is there a better way of writing the DAX code to be able to sum this vs comparing to the total growth %?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
4 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |