I have this code below, but not sure as why it is giving an error
If ws.Range("C" & lastrow).Offset(0, 24).Value <> "" Then
ws.Range("C" & lastrow).Offset(0, 24).Select
ActiveCell.Insert (xlShiftToRight) --- (insert method of range class failed)
ws.Range("C" & lastrow).Offset(0, 24).Value = Date & Chr(10) & Me.TextBox13.Value
End If
If ws.Range("C" & lastrow).Offset(0, 24).Value <> "" Then
ws.Range("C" & lastrow).Offset(0, 24).Select
ActiveCell.Insert (xlShiftToRight) --- (insert method of range class failed)
ws.Range("C" & lastrow).Offset(0, 24).Value = Date & Chr(10) & Me.TextBox13.Value
End If