excel - Function VLOOKUP from another workbook throws 'Cell currently evaluated contains a constant' -
i try simple vlookup workbook (in same folder, open), syntax is:
=vlookup([@mtknr];'[file.xlsx]gesamtliste'!$e$2:$z$76;5;0)
(ideally write
=vlookup([@mtknr];'[file.xlsx]gesamtliste'!teilnehmer[mtknr];[note];0)
but understood table names not allowed if workbook.)
but excel shows me formula, , if try evaluate it, tells me
cell evaluated contains constant
what can problem here? in advance!
[note]
not integer; column header label 1 of columns in table. convert number, use match across header row.
=vlookup([@mtknr]; '[file.xlsx]gesamtliste'!teilnehmer[mtknr]; match("note", mtknr[#headers], 0); false)
you might happier index/match function pair using structured table references.
Comments
Post a Comment