I need to fill catalog.
I want to make a input Userform for this, where by clicking a button add new product values in Textboxes will be inserted to specific column
Private Sub CommandButton1_Click()
Sheet3.Cells.Rows.Insert
Sheet3.Cells(25, 27).Value = TextBox1.Value
End Sub
Is this what you are trying?