Forum Discussion

kitcat7549's avatar
kitcat7549
Frequent Visitor
6 years ago
Solved

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 ig...
  • v-lionel-msft's avatar
    6 years ago

    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.