Hi I have two input files, i need to merge them so i used join tool and made it full outer join twice to merge my 2 different files. It worked well.
I have formula which is creating a new column 'New Column' by taking 2 files:
If Level1(File 1) = Work(File 2) then Function(Value Function)
Elseif Level2(File 1) = work (File 2) then Function (Value of Function)
Else '#N/a'
Endif.
For eg:
File 1
Employee_ID Level1 Level2
1001 Support
1002 Director Line
1003 Trader Manager
File 2:
Work Function
Support Direction
Line Services
Power Change
Which is giving this Output:
Employee ID Level1 Level2 New Column
1001 Support blank(no null) Direction
1002 Director Line Services
1003 Trader Power #N/A
Now, My requirement is : Is it possible to put a check that if that 'New Column ' gives 'N/A' value then user interface /prompt appears asks user to fill column Work ,Function (of file 2) and update file 2 as a new output file with a new line ;
Expected Output:
File 2
Work Function
Support Direction
Line Services
Power Change
Utility operation (new line)
Regards
Areeba