Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
Maybe this formula will help:
Column = IF (Table[EventType] = "ABC", TRUE(), FALSE())
Then on the filter pane you can add everything which is true
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).
Maybe this formula will help:
Column = IF (Table[EventType] = "ABC", TRUE(), FALSE())
Then on the filter pane you can add everything which is true
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 64 | |
| 47 | |
| 41 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 185 | |
| 123 | |
| 106 | |
| 78 | |
| 52 |