Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi. Asking for your help regarding transforming my table.
I wish to remove blank rows in my table based on blank cells of column 'Talk Title'
I tried to modify the code below in power query but an error occured.
#"Removed Blank Rows" = Table.SelectRows(#"Renamed Columns3", each not List.IsEmpty(List.RemoveMatchingItems(Record.FieldValues(_), {"", null}),each try Text.Clean(Text.Trim(_)) otherwise _ ),{""})
in
#"Removed Blank Rows"
Hoping for your help. Thank you.
-Third
Solved! Go to Solution.
Hi @third_hicana ,
Are you just trying to remove any rows where [Talk Title] is blank?
If so, then the following step should work:
Table.SelectRows(
PreviousStepName,
each [Talk Title] <> ""
)
You may need to adjust the "" bit, depending on whether your your non-null values in that column are "", " ", " " etc.
Pete
Proud to be a Datanaut!
Hi @third_hicana ,
Are you just trying to remove any rows where [Talk Title] is blank?
If so, then the following step should work:
Table.SelectRows(
PreviousStepName,
each [Talk Title] <> ""
)
You may need to adjust the "" bit, depending on whether your your non-null values in that column are "", " ", " " etc.
Pete
Proud to be a Datanaut!
Check out the July 2025 Power BI update to learn about new features.