The use of range names and the Offset method can make it easier to refer to data
on other sheets programmatically:
ActiveWorkbook.Sheets("Widgets").Range("SalesData").Offset(1, 0).Value
Also, you can use the Vlookup function from VBA:
Data$ = Application.WorksheetFunction.VLookup("WhatToLookFor",
ThisWorkbook.Sheets("Widgets").Columns("A:D"), 2, False)