Forum Discussion

rstanleyraj's avatar
rstanleyraj
Frequent Visitor
9 years ago
Solved

Create a column by comparing two data sets

Hi,   I have to compare two different tables and create a column. Following is the sample input and output.   Input Table 1   Product A B A E S A   Table 2 List ...
  • BhaveshPatel's avatar
    9 years ago

    STEP 1 CREATE A RELATIONSHIP BETWEEN TWO TABLESSTEP 2 CREATE A CALCULATED COLUMN WITH IF AND RELATED AS SHOWN ABOVE.

  • Greg_Deckler's avatar
    9 years ago

    Perhaps a measure in Table 1 like:

     

    Status = IF(COUNTROWS(RELATEDTABLE(List))>0,"Available","NA")