mykulpasskwa
Board Regular
- Joined
- Mar 20, 2018
- Messages
- 66
I have a userform with a multipage, and on each multipage I want to add a command button which opens another userform with a textbox to add notes. So far I have the notes linked to a cell on a hidden page, say "K5", and when there are notes on the page I want a checkbox to be enabled so the user knows to look at the notes.
The goal:
User adds notes to a multipage, the notes get saved to a cell. The next time a user opens the multipage a checkbox is enabled indicating their notes are saved and they should review the notes.
The problem:
I've been trying to use
but I have it in the wrong area. I have it in ufNotes_Change, but then when I reopen it the checkbox is gone. Is there a way to have the checkbox enabled anytime there is text in the notes?
Thanks in advanced for any help!
The goal:
User adds notes to a multipage, the notes get saved to a cell. The next time a user opens the multipage a checkbox is enabled indicating their notes are saved and they should review the notes.
The problem:
I've been trying to use
Code:
If wsFees.Range("K5") <> "" Then ckbNotes.value = True
Thanks in advanced for any help!