March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |