Forum Discussion
Anonymous
7 years agoNot applicable
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 | message |
| 1 | in table 3 |
| 2 | in table 2 |
| 3 | in table 2 |
| 4 | in table 3 |
| 5 | in table 4 |
| 6 | in table 4 |
| 7 | in table 4 |
| table 2 | |
| id | |
| 2 | |
| 3 |
| table 3 | |
| id | |
| 4 | |
| 5 | |
| 1 |
| table 4 | |
| id | |
| 5 | |
| 6 | |
| 7 |
Thnaks Advance
- Anonymous7 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())
9 Replies
- AnonymousNot applicable
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())- AnonymousNot applicable
thanks Anonymous for your replay,
but when I write equality
Table2[id] = Table1[id]
the Table1[id] sentence show error or not defined, can you tell me about how the relation must be done between table1, table2, table3 and table 4
- AnonymousNot applicable
AlB can you help me for this topic
thanks advance