This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Dear Community,
I need to show dynamic storage units based on a slicer selection (bytes, kilobytes, megabytes, gigabytes and terabytes) for "cold storage", "hot storage" and "total storage". I have created the 3 measures + the calculation group which dynamically converts the selected measure to the correct storage unit. I am displaying it correctly in a matrix visual, however I also need to make the units dynamically change in a Card (new) visual.
Here's my setup:
1. Database usage table:
2. Storage units table
3. Measures
Total cold storage =
SUM(
'Database usage'[Cold storage]
)
Total hot storage =
SUM(
'Database usage'[Hot Storage]
)
Total storage =
[Total cold storage] + [Total hot storage]
4. Calculation group with this item:
Storage unit =
VAR converted_storage =
DIVIDE(
SELECTEDMEASURE(),
POWER(
1024,
SELECTEDVALUE(
'Storage units'[ID],
0
)
)
)
RETURN
FORMAT(
converted_storage,
"0,0.00 " &
SELECTEDVALUE(
'Storage units'[Storage unit]
)
)5. Visuals:
I need help setting up the Card (new) visual so that it dynamically changes the storage units based on the selection from the slicer.
Any suggestions?
I am attaching a sample report: https://www.dropbox.com/scl/fi/49nnz5sqglay3v5iwgukp/Storage-Units-Demo-Calculation-Groups.pbix?rlke...
Thank you in advance!
Solved! Go to Solution.
You just need to add a visual level filter, Darg the calculation group column into the filters pane on the right and select the calculation item name:
for the new scorecard visual:
I am attaching the pbix file for your reference
Need a Power BI Consultation? Hire me on Upwork
Connect on LinkedIn
|
You just need to add a visual level filter, Darg the calculation group column into the filters pane on the right and select the calculation item name:
for the new scorecard visual:
I am attaching the pbix file for your reference
Need a Power BI Consultation? Hire me on Upwork
Connect on LinkedIn
|
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 30 | |
| 24 | |
| 23 |