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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
SantoshKumar
Microsoft Employee
Microsoft Employee

[Text Columns] extract values from one column by applying filter for other column in the same table

Hi,
 I have Two columns in my table.
1. Event 2. EventType both are text values.
By providing EventType ="ABC" i need to extract values from Event column
where "ABC" is one of the eventtype
i am looking for a quering to create new column which applys the above filter.

1 ACCEPTED SOLUTION

@SantoshKumar

 

Maybe this formula will help:

 

Column = IF (Table[EventType] = "ABC", TRUE(), FALSE())

Then on the filter pane you can add everything which is true

View solution in original post

3 REPLIES 3
themistoklis
Community Champion
Community Champion

@SantoshKumar

 

Maybe a simple if statement will help?

 

Column = IF (Table[EventType] = "ABC", Table[Event], "")

Then on the filter pane on the right exclude eveyrthing which is blank

thanks @themistoklis

Actually i used that option and looking for result with only true value (which satisfy the condition).

@SantoshKumar

 

Maybe this formula will help:

 

Column = IF (Table[EventType] = "ABC", TRUE(), FALSE())

Then on the filter pane you can add everything which is true

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors