This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register 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 April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |