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 all,
My first post, so if any suggestions please let me know.
I got a column with client names, I want to delete some rows with a specific name; all names with a suspense account in it. I got a list with these names I want to delete, just don't know how. Any suggestions?
Thanks,
Paul
Solved! Go to Solution.
Hi @Anonymous
You can not use DAX to delete rows, but you can exclude them as in the example below.
Measure = CALCULATE( SUM( 'Table'[Value] ), KEEPFILTERS( 'Table'[ID] IN { "A", "D" } = FALSE ) )
Hi @Anonymous
You can not use DAX to delete rows, but you can exclude them as in the example below.
Measure = CALCULATE( SUM( 'Table'[Value] ), KEEPFILTERS( 'Table'[ID] IN { "A", "D" } = FALSE ) )
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |