A
AA Arens
This is the formula I currently use to copy a value X from another document in cell A:
Cell A:
=IF(ISERROR(VLOOKUP($B3;fsr.csv!$C$2:$H$2000;3;FALSE));"";VLOOKUP($B3;fsr.csv!$C$2:$H$2000;3;FALSE))
Now, I want to add another condition: another field in the same row from the CSV file must match in other to add the value X in cell A.
Example:
values from three columns from CSV file:
10 15 20
Fill in the cell A the value "20" only if row with both 10 and 15 exist in the CSV.
Thank you for your help.
Cell A:
=IF(ISERROR(VLOOKUP($B3;fsr.csv!$C$2:$H$2000;3;FALSE));"";VLOOKUP($B3;fsr.csv!$C$2:$H$2000;3;FALSE))
Now, I want to add another condition: another field in the same row from the CSV file must match in other to add the value X in cell A.
Example:
values from three columns from CSV file:
10 15 20
Fill in the cell A the value "20" only if row with both 10 and 15 exist in the CSV.
Thank you for your help.