Hi,
I have a problem with my excel formula. I first had 2 files and using vlookup I copied the data from one file to another based on the data in a cell. However I needed to change it so it all fitted in one file, so I needed 2 sheets. Problem is when I use the exact same formula I now get #N/A instead of the correct data.
Here are the formulas...
The original:
The new one:
If the row is 1, it works fine so the data from the first cell is entered correctly, however if it gets to the vlookup is gives #N/A...
Anybody has an idea why this is?
I have a problem with my excel formula. I first had 2 files and using vlookup I copied the data from one file to another based on the data in a cell. However I needed to change it so it all fitted in one file, so I needed 2 sheets. Problem is when I use the exact same formula I now get #N/A instead of the correct data.
Here are the formulas...
The original:
Code:
=IF(ROW()=1;'C:\....\[File2.xml]Campaign Advanced Find View'!$B$1;VLOOKUP($D3;'C:\...\[File2.xml]Campaign Advanced Find View'!A:B;2;FALSE))
The new one:
Code:
=IF(ROW()=1;'Campaign Advanced Find View'!B1;VLOOKUP($D2;'Campaign Advanced Find View'!A:B;2;FALSE))
If the row is 1, it works fine so the data from the first cell is entered correctly, however if it gets to the vlookup is gives #N/A...
Anybody has an idea why this is?