Below is a code that I have to record the information in the two cells into one cell whenever the data is refreshed and the macro is ran. The top part works fine. The part I am having trouble figuring out is the last line before the "End Sub". This part of the code takes the value given in G3 and pastes it into the next available row in column D (this is completely separate from the top part of the code). My problem is that it is not pasting it into the D column starting at row 2. Instead it is pasting the value in Column T starting in row 27.
I have tried messing around with the code to see if I can get the code to paste it in Column D starting in Row 2 but Im having no luck.
Sub TimeStamp()
'
' TimeStamp Macro
'
' Keyboard Shortcut: Ctrl+Shift+T
'
ActiveCell.Formula = "=CONCATENATE(L1,N1)"
ActiveCell.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
ActiveSheet.Columns(4).SpecialCells(xlCellTypeLastCell).Offset(1, 0).Value2 = Range("G3").Value2
End Sub