I have read the previous posts (mikerickson) and tried to implement them without success.
See http://www.excelforum.com/excel-prog...-into-vba.html
Userform frmData obtains cell ranges in RefEdits and two doubles in text boxes.
Private Sub cmdSign_Run_Click()
Hide Me 'Removes the form from the screen
Dim Result() As Variant 'Container for calculated result
Result = Test(frmData.rfePassiveData.BoundValue, frmData.rfePassiveData.BoundValue......) 'a call to a Sub that performs calculation on the identified data
Unload Me 'Removes the form now that the calculation is complete
End Sub
The result is Error 91 - object not set or no With.
I see the Me object in Locals. It includes the RefEdit and Text objects. These seem to have values in three baleces: BoundValue, Value and Text. I have tried all three without success.
I have tried both explicit Me and frmData in the object names and a With End With statement using Me and frmData, both with no success.
I am not sure of the problem.
Error 91 implies that the object is not being referenced, but Me is there. Explicit frmData makes no difference.
Substituting BoundValue, Value and Text makes no difference.
I appreciate your Expert help - this is my first experience with Userforms having previously dealt only with User Functions.
Bookmarks