Hello,
I have a userform to add items to sheet1 and I'm using the code below,
and inserting manually formulas to columns ("C" "E" "F" "G")
Private Sub cmdAdd_Click()Dim ws As Worksheet
Dim MsgBoxResult As Long
Set ws = Sheet1
nr = ws.Cells(Rows.Count, 1).End(xlUp).Row + 1
ws.Cells(nr, 1) =...