Hello All,
I have the calculated field below and the result I am getting is, it is showing me the L2, L3, & L4 levels. However, I want to see only L4, unless it is Blank then I want to see L3 and if that is Blank then for it show L2. What am I doing wrong?
CONCAT( {DE:admin | Calc L2 Organizations}, IF(ISBLANK({DE:admin | L3 Organization Lookup}),"",CONCAT(", ",{DE:admin | L3 Organization Lookup})), IF(ISBLANK({DE:admin | L4 Organization Lookup}),"",CONCAT(", ",{DE:admin | L4 Organization Lookup})))
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
If I am understanding your question correctly: Show L4, If L4 blank show L3, If L3 blank show L2
IF(!ISBLANK(L4), L4, IF(!ISBLANK(L3), L3, L2))
Views
Replies
Total Likes
If I am understanding your question correctly: Show L4, If L4 blank show L3, If L3 blank show L2
IF(!ISBLANK(L4), L4, IF(!ISBLANK(L3), L3, L2))
Views
Replies
Total Likes
Yes, so what you posted is what I need to update it to?
Views
Replies
Total Likes
Yeah I haven't tested it but the logic should be right. Let me know if it does not work
It WORKED! THANK YOU!!!!!
Views
Replies
Total Likes