Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello everyone,
Scenario: if existing dimensional column is null then pick value from other given column.
other column comes from different table but connected to main table with primary key.
mater dimension: =if(USE_BusnUnit,'-',USE_BusnUnit1)
however, with above expression, i am getting values from "USE_BusnUnit1" even if "USE_BusnUnit" is not null. I want to have values from "USE_BusnUnit" and then from "USE_BusnUnit1".
please help with your valuable thoughts on how I can achieve it. Qlik Sense Enterprise on Windows
Hi @NewUser3 , welcome to the Community!
Threre'a an error in your expression, try with this:
=if(USE_BusnUnit = '-',USE_BusnUnit1)
Hi @NewUser3 ,
If you found the solution, marked the post as resolved to help others users which we'll face to the same issue like you in the future 😊.
Regards.
Yes, just did. Thanks for telling, i did not know it
nope..it isn't work. Coalesce() can even take multiple parameters..