I'm sorry, I guess I wasn't speciffic enough. The question I'm asking is not how to set a value in a cell of a sheet to a value gotten from a form. I'm asking if I can get the value gotten from a form to a variable, without using a shared global variable.
For instance if I was able to override the default show sub so that it was now a function which returned a string. then the code I wrote before would work. Or is there a way to access a forms variables after it disappears?
As of now I'm using the shared global variable approach to solve my problem, but I don't like using global variables if I don't have to. I find they make the code harder to read later. Is there a way around using globals?
-Venkman