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" )
Featured Session Drive Data Culture with Power BI: Vision, Strategy & Roadmap. Register here https://myignite.microsoft.com #MSIgnite #PowerPlatform #Power BI
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 |
---|---|
438 | |
185 | |
109 | |
59 | |
50 |
User | Count |
---|---|
437 | |
186 | |
121 | |
74 | |
72 |