Forum Discussion

Joak's avatar
Joak
Frequent Visitor
9 years ago
Solved

Create new table

Hello,    I have a table with columns A, B, C, D; how can I create a new table with columns A, B and D with only the lines matching with rows of column D which are different from zero and null ?  ...
  • Vvelarde's avatar
    9 years ago

    Joak

     

    Hi Create a new Table with :

     

    Dwithoutzeroandblanks = FILTER(Table1,Table1[D]<>"0" && Table1[D]<>BLANK())

     

    Regards

     

    Victor

    Lima - Peru