Forum Discussion

esaesa's avatar
esaesa
Regular Visitor
8 years ago
Solved

Fill blank values when column is based on left join table

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):
AAif(table1(col1)=tabl2(col1);"ok";"no")
BBif(table1(col1)=tabl2(col1);"ok";"no")
C ??if(table1(col1)=tabl2(col1);"ok";"no")
  • esaesa,

     

    You may add two calculated columns to Table1.

    Column =
    RELATED ( Table2[col1] )
    
    Column 2 =
    IF ( ISBLANK ( RELATED ( Table2[col1] ) ), "no", "ok" )
    

1 Reply

  • v-chuncz-msft's avatar
    v-chuncz-msft
    Community Support

    esaesa,

     

    You may add two calculated columns to Table1.

    Column =
    RELATED ( Table2[col1] )
    
    Column 2 =
    IF ( ISBLANK ( RELATED ( Table2[col1] ) ), "no", "ok" )