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 there,
I need to filter some rows in my table.
I need something like this code:
if event_id is in {10010, 10011, 10013} then 1 else 0
in order to mark with 1 the rows which have the event_id in the list that I write between braces. I can write another event_id if I need. Which function of PowerQuery is useful to reach this? Thanks.
Solved! Go to Solution.
Use following-if event_id is not a column, remove [ ] from [event_id]
if List.Contains({10010, 10011, 10013}, [event_id]) then 1 else 0
Use following-if event_id is not a column, remove [ ] from [event_id]
if List.Contains({10010, 10011, 10013}, [event_id]) then 1 else 0
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 8 | |
| 7 |