Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

check vaules

Hi Everyone, I need Help,   I want to Create Calculate colmun in table 1 with name message  to show Text Message after check value in others table, based on below tables  table 1 id messag...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Why is 5 in table 4, but not table 3? Is there any priority? You may try something like this, I think.. 

    = SWITCH( TRUE(), 
    COUNTROWS( FILTER( Table2,
    Table2[id] = Table1[id])) > 0, "in table2",
    COUNTROWS( FILTER( Table3,
    Table3[id] = Table1[id])) > 0, "in table3",
    ...
    BLANK())