Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Solved! Go to Solution.
Hi @kitcat7549 ,
You can add such a filter in Edit Queries:
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.
Hi @kitcat7549 ,
You can add such a filter in Edit Queries:
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |