Passing Variables-Excel VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I am new to VBA in ecel and have a question. I have made a userform to
collect information from the user and with that information I am using the
following code:

Set foundCell = Range("a4:a50").Find(Prob, , xlValues, xlWhole)
If foundCell Is Nothing Then
Check = MsgBox("Not Found. Would you like to add it to the database?",
36, "ERROR")
If Check = vbYes Then
thing.Hide
info.Show
Else
Exit Sub
End If
Else .....

I want to use data in the row of my 'foundcell'. My question is:
HOW DO I PASS THE INFORMATION ABOUT THE FOUNDCELL AND ALL THE OTHER CELLS IN
THE ROW, TO OTHER SUB PROCEEDURES AND FUNCTION PROCEEDURES THAT I HAVE
WRITTEN IN THE MODULE?

Thank you
 
You have a reply in your previous thread. Please do not repeat, you waste
people's time.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi Bob,
I am sorry. Like I said. I am new. This is my first post. I thought that I
had put the first one in the wrong newsgroup. No intention to offend or waste
anyone's time! Thank you for taking the time out to write me the note though.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel VBA 6
.FindNext problem 3
deleting rows based on criteria 7
Speeding up Hide rows code 2
What is missing from this form code? 5
Deleting rows 3
Find Value in Workbook 2
Listbox, fill by format 5

Back
Top