Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Syndicate_Admin
Administrator
Administrator

Help with Dax measurement, to replicate the value of a visualization

Hello
I come to you for help to simulate or replicate the value given in the TBLA towards a measurement so that I can use it as an independent measure called "Unused Kilos".

The visualization of the TBLA is as follows:
where it yields a total of "net kilos" = 2,807,415.16 , this TBLA has an object filter which is

wzuniga_2-1741806045281.png

wzuniga_3-1741806081571.png

Definition of measures used:

The net of the kilos =
SUMX('Weighted by Key',
'Weighted by Key'[kilos net]
)

Unique Combinations =
CALCULATE(
SUMX('Weighted by Key', DISTINCTCOUNT('Weighted by Key'[Comb(KEY)]))
)


I look forward to your help and thank you very much to everyone in advance!



1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

Solution:

Kilos = Used
SUMX(
FILTER(
SUMMARIZE(
'Weighted by Key',
'Weighted by Key'[Comb(KEY)],
"ConteoCombi", [Unique Combinations]
)
,[ConteoCombi] = 1
)
,[Kilos net]
)

View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Solution:

Kilos = Used
SUMX(
FILTER(
SUMMARIZE(
'Weighted by Key',
'Weighted by Key'[Comb(KEY)],
"ConteoCombi", [Unique Combinations]
)
,[ConteoCombi] = 1
)
,[Kilos net]
)
parry2k
Super User
Super User

@Syndicate_Admin check this blog post and also this one.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors