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 dateJoin 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,
In colum1 I want to delete rows with text 'Ending Balance for Period' and 'GL JE Name' how would I do this?
Many thanks
Solved! Go to Solution.
Just filter them out. The logic here is you won't technically be removing them, but you'll be selecting all rows that don't have that text.
It will generate code similar to this:
=Table.SelectRows(#"Changed Type", each not Text.Contains([ID], "Ending Balance for Period") and not Text.Contains([ID], "GL JE Name"))
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingJust filter them out. The logic here is you won't technically be removing them, but you'll be selecting all rows that don't have that text.
It will generate code similar to this:
=Table.SelectRows(#"Changed Type", each not Text.Contains([ID], "Ending Balance for Period") and not Text.Contains([ID], "GL JE Name"))
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingThank you again for the support
User | Count |
---|---|
9 | |
8 | |
6 | |
6 | |
6 |