Forum Discussion
rstanleyraj
9 years agoFrequent Visitor
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 ...
- 9 years ago
STEP 1 CREATE A RELATIONSHIP BETWEEN TWO TABLESSTEP 2 CREATE A CALCULATED COLUMN WITH IF AND RELATED AS SHOWN ABOVE.
- 9 years ago
Perhaps a measure in Table 1 like:
Status = IF(COUNTROWS(RELATEDTABLE(List))>0,"Available","NA")
BhaveshPatel
9 years agoSuper User
STEP 1 CREATE A RELATIONSHIP BETWEEN TWO TABLESSTEP 2 CREATE A CALCULATED COLUMN WITH IF AND RELATED AS SHOWN ABOVE.
rstanleyraj
9 years agoFrequent Visitor
Thank you very much for the inputs. It worked.