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
Dear Community,
I retrieved data from company DB, but since its huge data and lots of information. So I did an example in excel file then import to BI.
Here's my data set example:
I want to remove the rows which consignee and consignor column is having null value. (If not remove, it will affect my later calculation part)
I try to use query editor remove 'null' in Consignee, but in result all the null in Consignee has been remove while there might have data in Consignor.
Here's the pbix: https://ufile.io/govbkbdh
Grateful for any help & thanks for the attention.
Solved! Go to Solution.
Hi @NickProp28
You want to remove both columns are null, insert a step after your current step on the right Applied Steps
Table.SelectRows( yourPreviousStep, each not ( [yourColumn1] = null and [yourColumn2] = null))
Hi @NickProp28
You want to remove both columns are null, insert a step after your current step on the right Applied Steps
Table.SelectRows( yourPreviousStep, each not ( [yourColumn1] = null and [yourColumn2] = null))
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.