A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Further testing...
If I remove the use of ADDRESS in my previous post of a few minutes ago, and replace it with purely A1 formatted cell references inside the IFS inside the LET, it works.
i.e. change the IFS(...) function that calculates FirstMissingColm to -
IFS( INDIRECT( "B" & FirstMissingDataRow ) = 0, "B",
INDIRECT( "C" & FirstMissingDataRow ) = 0, "C",
TRUE, "D" )
then LET allows the HYPERLINK to actually 'jump' to calculated reference on both Excel installations.
Note though that the use of ADDRESS within the HYPERLINK function still works with the INDIRECT I have there in the full coded version of this LET command.
So for now my 'full' cell function reads as follows -
=LET( FirstMissingDataRowLCL,
MIN( INDEX( FILTER( tbkWhRdgs[Row Nbr], tbkWhRdgs[Date of reading] = "", MAX( tbkWhRdgs[Row Nbr] ) + 1 ), 1 ),
INDEX( FILTER( tbkWhRdgs[Row Nbr], tbkWhRdgs[kWh reading] = "", MAX( tbkWhRdgs[Row Nbr] ) + 1 ), 1 ),
INDEX( FILTER( tbkWhRdgs[Row Nbr], tbkWhRdgs[Odometer reading] = "", MAX( tbkWhRdgs[Row Nbr] ) + 1 ), 1 ) ),
MissingColmLCL, MissingColm,
HYPERLINK( "#" & MissingColmLCL & FirstMissingDataRowLCL,
"click here to go to first incomplete" & CHAR( 10 ) &
IF( INDIRECT( ADDRESS( FirstMissingDataRowLCL, COLUMN( tbkWhRdgs[[#Headers],[Is Row Hidden]] ), 1, 1 ) ) = "H", "the HIDDEN ", "" ) &
"data cell (i.e. " & MissingColmLCL & FirstMissingDataRowLCL & ")" ) )
PS: I've put LCL for 'local' on the variables within LET. Hopefully can remove these when Excel fully fixed.
The reference FirstMissingColm is a named cell within the worksheet (& I've duplicated, hopefully short-term, the first variable in a helper cell so it can use the value). I want to use the newer function LET rather than have helper cells, hence why I've left the LET coded in a manner some might say "why bother then?".