Hi Community
I am trying to pull data from 2 different sources when my main source is empty.
E.g. I have 1 column called 'Name of exposure' when this column is Empty I want to pull from 'Parent Company Name' however if this Row is also empty I want to pull from 'Issuer name' . There shouldn't be any instance where all 3 are empty.
Note: I only want to pull data from other columns when my 'Name of exposure' column is empty.
See my code below in the formula tool that turns everything in 'Name of exposure' from mostly populated to blank.
IF
!IsEmpty([Name of Exposure]) THEN [Parent Company Name]
ELSEIF !IsEmpty([Parent Company Name]) THEN [Issuer Name]
ELSE [Name of Exposure]
ENDIF
Note 2: I have checked the community solutions, especially this one below, but it doesn't seem to work for my dataset.
Any help would be much appreciated!
Solved! Go to Solution.
Hi,
Try this:
IF
!IsEmpty([Name of Exposure]) then [Name of exposure]
elseif IsEmpty([Name of Exposure]) and !IsEmpty([Parent Company Name]) then [Parent Company Name]
ELSEIF IsEmpty([Parent Company Name]) and !IsEmpty([Issuer name]) THEN [Issuer Name]
ELSE [Name of Exposure]
ENDIF
@NadiaFS
A slightly simple one.
Hi@NadiaFS
I have made Workflow for your Problem. Please Check.
If it works Kindly accept it as Solution.
Thanks
Thank you, both this and @Bren_Spill 's solution worked!
User | Count |
---|---|
19 | |
15 | |
13 | |
9 | |
8 |