I do not use VBA much but need to complete this task. I cannot figure out how to paste data from entry form into the Log spreadsheet. Here what I have so far.
It works. The only problem is it overrides what is there in the Log.
Sub RangeCopy_Transpose()
  
    Dim shRead As Worksheet
    Dim lastrow As Long
    Set shRead = Sheets("Log")
  
    Range("B3, B5, B7, B9, B11, B13, B15, B17,B19,B21,B23,B25").Copy
    shRead.Range("A2").PasteSpecial Transpose:=True
    
    Range("B3:B26").ClearContents
    
End Sub
 
     
    