Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I need to create a Dim table based on fact, and I need to avoid to use power query.
What i'm trying to get it's a DAX that allows me to select some columns from a table, and gives me back just the unique value.
Something you can easilly do by selecting the two column and type "remove duplicates" in power query.
Doing it in DAX would let me have a lighter file
Here an example
From
A | B | C |
Red | 2 | big |
Red | 2 | Small |
Jellow | 1 | Big |
I need to obtain
AB
A | B |
Red | 2 |
Jellow | 1 |
Solved! Go to Solution.
Hi @GianlucaM,
This line should help you to achieve the required outcome:
New Table = SUMMARIZE ( 'Table', 'Table'[A], 'Table'[B] )
Best Regards,
Alexander
Hi @GianlucaM,
This line should help you to achieve the required outcome:
New Table = SUMMARIZE ( 'Table', 'Table'[A], 'Table'[B] )
Best Regards,
Alexander
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |