Forum Discussion
Ulla_Zeeberg
Jan 21, 2023Copper Contributor
Vlookup other sheet
Hi I am having problems with a quite simple VLOOKUP: The formula goes: =VLOOKUP(A2,'Englands tur’!$A$2:$G$41,7,0) I want to retrieve the number in the sheet called 'Englands tur' in column G, whe...
- Jan 21, 2023
Do you use comma as decimal separator? If so, you should use semicolon to separate the arguments of the function:
=VLOOKUP(A2;'Englands tur'!$A$2:$G$41;7;0)
HansVogelaar
Jan 21, 2023MVP
The single quote after Englands tur is a "curly quote". Replace it with a straight single quote:
=VLOOKUP(A2,'Englands tur'!$A$2:$G$41,7,0)
Ulla_Zeeberg
Jan 21, 2023Copper Contributor
Thanks for the answer. I tried to copy-paste your line into the sheet, but it still doesn't work unfortunately,
kind regards, Ulla
kind regards, Ulla
- HansVogelaarJan 21, 2023MVP
Do you use comma as decimal separator? If so, you should use semicolon to separate the arguments of the function:
=VLOOKUP(A2;'Englands tur'!$A$2:$G$41;7;0)- Ulla_ZeebergJan 21, 2023Copper ContributorWaouw - that worked! Thank you so very much:)