In my Access VBA I have hyperlink, which is using the following way to link to cell:
oSheet.Cells(1, i).Formula = "=HYPERLINK(""#Sheet2!E6"", """ & !TestCase & """)"
However, instead of E6, I want to use row,col notation, since all my internal application logic is using Cells/rows/cols.
Thanks.
Instead of
FormulauseFormulaR1C1(Row / Column format)Here are two examples:
Set the formula of your cells to
=$B$1:Set the formula of A1 to
=C2, A2 to=C3etc.: