Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Loading an IF( MATCH( ..WILDMATCH() statement BUT the Else (or "otherwise") element is not being applied.
i.e. I am having trouble MATCHing Team_D.
When I run the below code, no results are being applied to Team_D **But it works for all other teams***
LOAD *,
IF(MATCH(Business_Unit, 'Unit_1'), 'Team_A',
IF(MATCH(Business_Unit, 'Unit_2', 'Unit_3'),
PICK(WILDMATCH(Industry, 'Motor', 'Real Estate'), 'Team_B', 'Team_C')), 'Team_D'))
AS Team;
Thanks in advance 🙂
I think your Pick() should look like:
PICK(WILDMATCH(Industry, 'Motor', 'Real Estate', '*'), 'Team_B', 'Team_C','Team_D')
-Rob
I think your Pick() should look like:
PICK(WILDMATCH(Industry, 'Motor', 'Real Estate', '*'), 'Team_B', 'Team_C','Team_D')
-Rob