Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I would like to create a distinct table from Table1
reference.id | event.id |
1 | a |
2 | b |
3 | c |
4 | d |
5 | e |
6 | a |
7 | b |
8 | c |
9 | d |
10 | e |
11 | a |
12 | b |
13 | c |
14 | d |
15 | e |
And the new Table2 would only give me the event.id that has "a".
reference.id | event.id |
1 | a |
6 | a |
11 | a |
Solved! Go to Solution.
Hi @ggzmorsh
The simplest way with use of New Table DAX expression
Table2 = FILTER( Table1, Table1[event.id] = "a" )
Hi @ggzmorsh
The simplest way with use of New Table DAX expression
Table2 = FILTER( Table1, Table1[event.id] = "a" )
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
75 | |
72 | |
69 | |
45 | |
41 |
User | Count |
---|---|
63 | |
41 | |
30 | |
28 | |
28 |