Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I want to create a new column tgat has many sub-conditions. Something as follows:
if(Text='Apple','Mango', if(Edible='Yes', if(Edible='No'))) as Eatable. However, the variable Text is in one table and Edible is in another table.
Can this be done? thank You!
Solved! Go to Solution.
Hi @Anonymous
Yes, you can do that. Use RELATED funtion and also pls make sure the requied relationship is done properly.
New Column =
IF( Table1[Col1] = "Apple", "Fruit", IF (RELATED(Table2[Edible]))= "Yes", "Eatable","Not Eatable") )
Thanks
Raj
Hi @Anonymous
Yes, you can do that. Use RELATED funtion and also pls make sure the requied relationship is done properly.
New Column =
IF( Table1[Col1] = "Apple", "Fruit", IF (RELATED(Table2[Edible]))= "Yes", "Eatable","Not Eatable") )
Thanks
Raj
@Anonymous
Hey,
I actually have a code as follows in QlikView
if(Text='manufacturing', if(dir_indir='Dir', 'DIR', if(dir_indir='Indir', 'INDIR'))) as DIRINDIR.
I want to create this new column DIRINDIR in a similar way.
Thank You!
| User | Count |
|---|---|
| 51 | |
| 35 | |
| 29 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 57 | |
| 39 | |
| 22 | |
| 21 |