So simple problem but I just dont figure out how to fill blank values in table visualizations. If someone could help me?
I have left joined table1 to table2. Where should I put the third column and how? Calculate column or measure?
Table1(col1) | Table2(col1) | col3 (Wanted): |
A | A | if(table1(col1)=tabl2(col1);"ok";"no") |
B | B | if(table1(col1)=tabl2(col1);"ok";"no") |
C | ??if(table1(col1)=tabl2(col1);"ok";"no") |
Solved! Go to Solution.
You may add two calculated columns to Table1.
Column = RELATED ( Table2[col1] )
Column 2 = IF ( ISBLANK ( RELATED ( Table2[col1] ) ), "no", "ok" )
You may add two calculated columns to Table1.
Column = RELATED ( Table2[col1] )
Column 2 = IF ( ISBLANK ( RELATED ( Table2[col1] ) ), "no", "ok" )
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
437 | |
194 | |
107 | |
56 | |
49 |
User | Count |
---|---|
471 | |
233 | |
131 | |
75 | |
74 |