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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
SantoshKumar
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.