Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
Total newbie here. I'm looking to add a card visual that displays the percentage of certain aging bucket groups and status subcategories. While i have it listed out in the matrix table below, i was hoping to visualize it in a simple card at the top of the report.
I'm specifically looking to just calculate 121-150, 151-180, and >180 aging buckets and only the "Carrier Action Needed, WR Action Needed, and Not Worked" subcategories within those buckets to get a percentage from the grand total of balance due ($35,497,566.55) to show how much impact it overall.
I am so grateful for any assistance!
Here is a matrix table to show more details:
Solved! Go to Solution.
Hi, @vviera
You can try the following methods.
Measure =
VAR _N1 = CALCULATE ( SUM ( 'Table'[BALANCE DUE] ), ALL ( 'Table' ) )
VAR _N2 =
CALCULATE ( SUM ( 'Table'[BALANCE DUE] ),
FILTER ( ALLEXCEPT ( 'Table', 'Table'[AGING BUCKET] ),
[Type] IN { "Carrier Action Needed", "WR Action Needed", "Not Worked" } ) )
RETURN
DIVIDE ( _N2, _N1 )
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @vviera
You can try the following methods.
Measure =
VAR _N1 = CALCULATE ( SUM ( 'Table'[BALANCE DUE] ), ALL ( 'Table' ) )
VAR _N2 =
CALCULATE ( SUM ( 'Table'[BALANCE DUE] ),
FILTER ( ALLEXCEPT ( 'Table', 'Table'[AGING BUCKET] ),
[Type] IN { "Carrier Action Needed", "WR Action Needed", "Not Worked" } ) )
RETURN
DIVIDE ( _N2, _N1 )
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
8 |
User | Count |
---|---|
13 | |
12 | |
11 | |
10 | |
8 |