Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
kitcat7549
Frequent Visitor

Ignore rows

I'm pulling in files that will be updated over time as more collections are done. So, my setup is Date, Collector, and several more columns. Is there a way to setup a formula that if date is empty ignore the whole row?

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @kitcat7549 ,

 

You can add such a filter in Edit Queries:

ii3.PNG

Or use DAX function, such as :

FILTER(
        Table,
        Table[Date] <> BLANK()
    ) 

These filters will continue to work even if your data is constantly refreshed.

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @kitcat7549 ,

 

You can add such a filter in Edit Queries:

ii3.PNG

Or use DAX function, such as :

FILTER(
        Table,
        Table[Date] <> BLANK()
    ) 

These filters will continue to work even if your data is constantly refreshed.

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

In edit query mode/Transform data you can delete row based on condition

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors