Quote Originally Posted by dominicb View Post
Good morning cluelessdood

Userforms won't "remember" data from previous sessions - you can set a default value through VBA for every time they're opened but that's about it.

What you will need to do is set up a hidden sheet that will store the default values. When the userform is opened, these values are read from your hidden sheet and the userform is populated using these values.
When the userform is closed, these values are saved back to your hidden sheet.
These are then saved with the file for the next time the userform is opened.

HTH

DominicB
I made the hidden sheet, but I'm not really sure how to connect it...