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.
I want to remove rows from a table visual where neither ColumnA OR ColumnB contain a value. How can I do this?
e.g. In this example row #3 would be filtered out from the table
Row # | ColumnA | ColumnB |
1 | X | |
2 | X | |
3 | ||
4 | X | X |
Solved! Go to Solution.
Hi @jdubs ,
you can create a calculated table in DAX
Tabelle 2 = FILTER(Tabelle,OR(Tabelle[ColumnA] <> BLANK(), Tabelle[ColumnB] <> BLANK()))
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @jdubs ,
you can create a calculated table in DAX
Tabelle 2 = FILTER(Tabelle,OR(Tabelle[ColumnA] <> BLANK(), Tabelle[ColumnB] <> BLANK()))
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Thank you @mwegener. That's exactly what I needed. Still getting the hang of this DAX stuff 🙂
In power query you could add a column that combines your two, then delete rows where the check column is blank, then delete the check column.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
38 | |
30 | |
26 |
User | Count |
---|---|
99 | |
87 | |
45 | |
43 | |
35 |