If you want to retrieve the value from the cell for use in the userform, then
use code to grab the contents.
Maybe in the userform_initialize procedure:
me.textbox1.value = worksheets("sheet9999").range("a999").text
If you want to put the value from the textbox back to the cell, then you're
going to lose the formula.
> Hi Group,
>
[quoted text clipped - 11 lines]
>
> DonH

Signature
Dave Peterson
donh - 10 Aug 2007 17:17 GMT
> If you want to retrieve the value from the cell for use in the userform, then
> use code to grab the contents.
[quoted text clipped - 27 lines]
>
> - Show quoted text -
Thank you Dave, I shall give that a try. I've been having a go using
ListBox's instead. They seem to work, but don't know if I'm building
up more problems using them.
Thanks again.
DonH