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.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |