In Sheet1 i have one stagnant Column suppose Column "A" which gets copied again and again in next empty column in same Sheet
Like 1st it gets copied in Column "B" then find next empty column & copy data in Column "C"
--> Here my question is
I want to create formula in Sheet 2 in Column "A" where it make Formula with next filled column in Sheet1
Like
1st it makes calculation:
Sheet1!A1/Sheet1!B1After few min
it make formula in same Column "A" oF Sheet2:
Sheet1!A1/Sheet1!C1After few min
so on
Sub GoToNextCol()
Application.ScreenUpdating = False
Dim NextCol As Long
NextCol = Sheet1.Cells(1, Columns.Count).End(xlToLeft).Column + 1
Sheet1.Range("A1").CurrentRegion.Copy Sheet1.Cells(1, NextCol)
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub