Hi all,
Gentle here please, newbee to this stuff :-)
I am trying to refer to another sheet where I have a risk matrix (usual thing; likelihood on one matrix and consequence on the other).
The sheet I am referring to is called "Reference". Here's what I am trying from my main sheet:
=IF([Overall Compliance]@row = "Not Applicable", "Not Applicable", IFERROR(IF(OR(ISBLANK(Likelihood@row), ISBLANK(Consequence@row)), "", INDEX({Reference Range 1}, MATCH(Likelihood@row, {Reference Range 1}, 0), MATCH(Consequence@row, {Reference Range 1}, 0))), "Error"))
I know this works in Google sheets (I am trying to convert a sheet over). Obviously the syntax is a little different (sheet names, Number/row nomenclature) but I feel it should be ok.
CLEARLY I am doing something wrong as it comes up as unparsable.
The first bit works fine: =IF([Overall Compliance]@row = "Not Applicable", "Not Applicable") on it's own, so my stuff up must be in the second section.
I would appreciate any tips on how to fix.
Ian