Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 31 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 80 | |
| 68 | |
| 43 | |
| 26 | |
| 23 |