formula to link to other tabs

  • Thread starter Thread starter CLGonline
  • Start date Start date
C

CLGonline

need assistance to build formula so i can use cell contents to create links
to other tabs within spreadsheet
 
i am trying to use the contents of a couple of cells to build the name of the
tab to pull the cell contents from

ColumnA ColumnB
row1 6 1

need to combine the above cell contents to get the contents from cell C2 of
the tab 6-1 (i.e. results into =+'6-1'!C2)
 
Try this

=INDIRECT("'"&A1&"-"&B1&"'!C2")

where 6 is in A1 and 1 is in B1.

Drop the =+ signs from your formulas, all they do is waste space, memory and
typing time, just enter =
 
Back
Top