Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I am trying to remove rows only if "Tcode" is a duplicate and "Transaction text" is blank. May I know how to do that?
Thanks
Reza
Solved! Go to Solution.
pls see my video
https://1drv.ms/v/s!AiUZ0Ws7G26RiDN2lGwr_jOnp-KB?e=bQykqZ
Sample PBIX file attached
https://1drv.ms/u/s!AiUZ0Ws7G26RiDJ5iB9RA3lgQcnR?e=wcEbBQ
= Table.TransformColumns(
#"Grouped Rows",{"Count",(x)=> if Table.RowCount(x)> 1 then Table.SelectRows(x,
(y)=> y[Data] <>"") else x})
Great, many thanks Ahmedx 🙂
pls see my video
https://1drv.ms/v/s!AiUZ0Ws7G26RiDN2lGwr_jOnp-KB?e=bQykqZ
Sample PBIX file attached
https://1drv.ms/u/s!AiUZ0Ws7G26RiDJ5iB9RA3lgQcnR?e=wcEbBQ
= Table.TransformColumns(
#"Grouped Rows",{"Count",(x)=> if Table.RowCount(x)> 1 then Table.SelectRows(x,
(y)=> y[Data] <>"") else x})
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.