How to ensure updates from userform is saved in the new rows of your Worksheets

  • Hi everyone.

    I have a user-form with a Combo-Box and 6 text fields and 3 buttons( Update, Reset, Exit). My Combo-Box contains all the worksheets( i have 4 of it) as it contents

    How do I ensure that after updating my desired worksheets, the updates always falls in the new rows.

    My subsequent updates always overrides the previous update and it defeating the idea of updating from the user-form


    This is my update button code






    Please help :!:

  • Welcome to the Forum. Please read the Forum Rules to understand how the Forum works and why I have added Code Tags to your post


    All VBA code posted in the forum must be wrapped in code tags, which you omitted, including single-line code snippets.Be sure to use them in future posts.


    How to use code tags

    Note: no apostrophe in the tags, just used for demonstration here.

    ['code]


    your code goes between these tags


    ['/code]


    Or, just highlight all of the code and press the <> in the post menu above button to add the code tags.


    Thanks.

  • Okay. Thanks

  • Thanks, I have worked it out

    It happens that my LastRow was wrong

    Code
    LastRow = ActiveSheet.Range("D999999").End(xlUp).Row + 1

    This fixed it

    Code
    LastRow = ActiveSheet.Range("E999999").End(xlUp).Row + 1


    Thanks.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!