Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |