I'm trying to shed some 'fat' off two macros I have, trying to make them run as quickly as possible. I wonder if my macros below can be further optimized:
Code
i = 9
Do Until Worksheets("RST").Cells(i, 2) = ""
Range("H9").FormulaR1C1 = "=IF(AND(RC[-2]<>"""",RC[1]=""""),WORKDAY(RC[-2],5,RC[-2]),"""")"
Range("H9").Copy Destination:=Worksheets("RST").Cells(i, 8)
i = i + 1
Loop
and