UserForm data to Worksheet and Save

privxls

Board Regular
Joined
Nov 22, 2016
Messages
55
Office Version
  1. 2021
Platform
  1. Windows
Hi all,
Good day!

I would like to ask for your assistance on this project that I am working. I have a UserForm that goes like this:

Ls6RUaJ.png


I have a code in place in the 'Save Form' button that transfer the data from the UserForm to the Worksheet in the same file. The data is entered from Cell B9 to F9 but what I want is every time the user clicks 'Save Form' it would create a new line in B9 and at the same time Save the file. I just cannot figure out for the life of me how to do it.

Here is my code:
lSlUfUt.png


I hope that you can help me on this one and I would highly appreciate it :)

Kind regards,
Priv
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi,
If it is your intention to save each new record to Row 9 in your worksheet then see if following update to your code helps

Code:
Private Sub CommandButton1_Click()
    Const IRow As Long = 9
    Dim ws As Worksheet


    Set ws = Worksheets("Reports")


    ws.Rows(IRow).EntireRow.Insert


'rest of code
    With ws
  
  
  
  
    End With


    ThisWorkbook.Save
End Sub

Dave
 
Upvote 0
Hi Dave,

It worked as expected.
I highly appreciate your time and effort on replying to this thread.

Kind regards,
Priv
 
Upvote 0
Hi Dave,

It worked as expected.
I highly appreciate your time and effort on replying to this thread.

Kind regards,
Priv

Most welcome - glad suggestion helped & thanks for the feedback.

Dave
 
Upvote 0

Forum statistics

Threads
1,214,375
Messages
6,119,166
Members
448,870
Latest member
max_pedreira

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top