I wanted to count in my Excel VBA Macro one up, so then cell is changing +1 starting cell: Sheet2!$A1 --> next Cell Sheet2!$A2
In my Sheet 1 i have a Cell with starts by 1 and get count up by clicking a button by 1 (Cell A1 in Sheet1).
My Idea:
Sheets("Sheet2").Range("Sheet2!A Sheets("Sheet1").Range(Sheet1!A1).Value = "MY Input"
Should be like this:
Sheets("Sheet2").Range("Sheet2!A Sheet1!A1).Value = "MY Input"
But it does not work. Any Ideas ?