In my macro, I will select a cell and insert the Formula. I will insert inside a Table. So it can be automatically draged down. But the problem is My Sheet name "December" will be changed every month. Next month it will be "January" and so on. How to change the formula.
=INDEX(Product!$L:$L; MATCH(December!$A3; Product!$I:$I; 0);COLUMNS($A:A))
The sheet name will be changed manually. Help me
Sub Macro1()
Range("Q3").Value = "=INDEX(Product!C12, MATCH(December!RC1, Product!C9, 0),COLUMNS(C1:C[-16]))"
End Sub