Can anyone pick up my error here please
I want to add a formula in cell "D3" and along this row until the last column populated starting in "C3"
Dim LC As Integer
[LC = Cells(3, Columns.Count).End(x1ToLeft).Column
With Range ("D3" & LC)
.FormulaR1C1 = "=COUNTIF(export!C1,R[-1]C,export!C3,RC3)"
.Value = .Value
End With]
I want to add a formula in cell "D3" and along this row until the last column populated starting in "C3"
Dim LC As Integer
[LC = Cells(3, Columns.Count).End(x1ToLeft).Column
With Range ("D3" & LC)
.FormulaR1C1 = "=COUNTIF(export!C1,R[-1]C,export!C3,RC3)"
.Value = .Value
End With]