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