Hello,
Can you use variables in the following way?
Code
If ThisWorkbook.Sheets("ClientWorkbench").Cells(ClientWorkbenchRow, Range(ClientWorkbench & ThisWorkbook.Sheets(ClientMatrixSht).Cells(MetricRw, 1).Value)).Value = "" Then
Basically clientworkbenchrow is declared as a number, but wanted to get Range(ClientWorkbench & ThisWorkbook.Sheets(ClientMatrixSht).Cells(MetricRw, 1).Value) to give me ClientWorkbenchColumn rather than "ClientWorkbenchColumn" so that I can use it as a variable (ClientWorkbenchColumn is actually a number already which I wanted to use). Is that possible? Hope that makes sense, its been a long day!