Forum Discussion

SantoshKumar's avatar
SantoshKumar
Microsoft Employee
7 years ago
Solved

[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...
  • themistoklis's avatar
    themistoklis
    7 years ago

    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