The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 ) )
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |