Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi All,
I am having trouble filtering the column [Source] within my nested group table "Grouped".
My condition should check whether the value "SAT" exists in the column, if true it will remove rows with values "VBRP", else column will remain as is.
Code is as follows:
= Table.AddColumn(#"Grouped Rows", "FilteredTable", each Table.SelectRows([Grouped], each
if Text.Contains([Source],"SAT") then [Source] <> "VBRP"
else true
))
Thanks!
Solved! Go to Solution.
pls try this
if List.Contains([Grouped][Source],"SAT") then Table.SelectRows([Grouped],each [Source] <> "VBRP") else [Grouped]
Thank you so much!
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 |
---|---|
65 | |
63 | |
52 | |
37 | |
36 |
User | Count |
---|---|
82 | |
67 | |
61 | |
46 | |
45 |