Forum Discussion
Joak
9 years agoFrequent Visitor
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
9 years agoCommunity Champion
Hi Create a new Table with :
Dwithoutzeroandblanks = FILTER(Table1,Table1[D]<>"0" && Table1[D]<>BLANK())
Regards
Victor
Lima - Peru
Joak
9 years agoFrequent Visitor
thanks !
It seems way more simpler than I thought.
Then I guess it's possible to compare/add/ use formulas between two columns that are in deiffernet tables ?