Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
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!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 44 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 102 | |
| 37 | |
| 26 | |
| 26 |