Closed duncandewhurst closed 2 years ago
Removing the unnecessary INDIRECT
functions seems to fix the problem:
=IF(OR(ISERROR(SEARCH("extension",INDIRECT("$A"&row()))),NOT(ISERROR(SEARCH("parties",INDIRECT("$C"&row()))))),VLOOKUP(INDIRECT("$C"&row()),INDIRECT("OCDS Schema 1.1.5!$B:$D"),2,FALSE), VLOOKUP(INDIRECT("$C"&row()),INDIRECT("OCDS Extension Schemas 1.1.5!$B:$D"),2,FALSE))
Should be
=IF(OR(ISERROR(SEARCH("extension",INDIRECT("$A"&row()))),NOT(ISERROR(SEARCH("parties",INDIRECT("$C"&row()))))),VLOOKUP(INDIRECT("$C"&row()),'OCDS Schema 1.1.5'!$B:$D,2,FALSE), VLOOKUP(INDIRECT("$C"&row()),'OCDS Extension Schemas 1.1.5'!$B:$D,2,FALSE))
fixed in updated version 0.91 published 20220407
closed wrong issue!
was right the first time
The formulae evaluate to a #REF! error when the template is opened in MS Excel.