I am trying to populate a field using the lookup function and continue to get an err:502 error. I have tried different things to fix. I am missing something but unable to figure out what.
When I use the Vlookup in column B of the spreadsheet it works fine:
=IF(ISBLANK (A17);"";VLOOKUP(A17;'Drop Down'.$A$7:$B$11;COLUMN();0))
When I copy the function to column D and use column C to check it gives me the 502 error:
=IF(ISBLANK (c17);"";VLOOKUP(c17;'Drop Down'.$A$7:$B$11;COLUMN();0))
Any help would be much appreciated.
[Solved] Err:502 VLOOKUP
[Solved] Err:502 VLOOKUP
Last edited by MrProgrammer on Tue Dec 20, 2022 9:07 pm, edited 2 times in total.
Reason: Vlookup → VLOOKUP
Reason: Vlookup → VLOOKUP
Open Office 4.1.6 Mac OS High Sierra 10.13.6
Re: Err:502 Vlookup
Code: Select all
=IF(ISBLANK (c17);"";VLOOKUP(c17;'Drop Down'.$A$7:$B$11;COLUMN();0))Code: Select all
=IF(ISBLANK (c17);"";VLOOKUP(c17;'Drop Down'.$A$7:$B$11;2;0))OpenOffice 4.1 on Windows 10 and Linux Mint
If your question is answered, please go to your first post, select the Edit button, and add [Solved] to the beginning of the title.
If your question is answered, please go to your first post, select the Edit button, and add [Solved] to the beginning of the title.
Re: Err:502 Vlookup
Thanks for the suggestion was able to get it to work.
Not sure why I used column (), I am revisiting the spreadsheet that I had created a couple of years ago. I might of asked for help back then and this was suggested.
Thanks again.
Not sure why I used column (), I am revisiting the spreadsheet that I had created a couple of years ago. I might of asked for help back then and this was suggested.
Thanks again.
Open Office 4.1.6 Mac OS High Sierra 10.13.6