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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
ggzmorsh
Helper II
Helper II

Table from a distinct category

I would like to create a distinct table from Table1

 

reference.idevent.id
1a
2b
3c
4d
5e
6a
7b
8c
9d
10e
11a
12b
13c
14d
15e

 

And the new Table2 would only give me the event.id that has "a".

reference.idevent.id
1a
6a
11a
1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @ggzmorsh 

 

The simplest way with use of New Table DAX expression 

Table2 = FILTER( Table1, Table1[event.id] = "a" )



Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.



View solution in original post

1 REPLY 1
Mariusz
Community Champion
Community Champion

Hi @ggzmorsh 

 

The simplest way with use of New Table DAX expression 

Table2 = FILTER( Table1, Table1[event.id] = "a" )



Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.



Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.