Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
vba in excel
Name: mherber2 Date: June 14, 2007 at 20:20:44 Pacific OS: xp pro CPU/Ram: unknown Product: unknown
Comment:
i have two different workbooks, in one workbook i have put in radial buttons, in the other workbook i want in to put something in a specific cell when the radial button in the other workbook is true. they are two different worksheets in to different workbooks. i think you need to use vba but i dont know the string. please help.
Name: Razor2.3 Date: June 15, 2007 at 02:39:39 Pacific
Reply:
You can't. "Radial" buttons do not exist, therefore you cannot test for them. If you meant radio buttons, then that's a different can of worms.
In the document that you want the value, your Sub should look something like...
Sub Something Dim book As Excel.Workbook Set book = GetObject("Path & name of first book") If i.Worksheets(?).radio1.Value _ ThisWorkbook.Worksheets(?).Range("A1").Formula = Whatever End Sub
Summary: i created a form using vba in excel, what i want to do is if the cell that is clicked on is blank i would like excel to open the form...please help ...
Summary: ok... once again i need some help...darn vba got me again...this time what i am looking for is i track certian stats at work such as how long each employee spends on each call and they have a certian ...
Summary: Hi, I am using Office 2007. I am trying to use the FIND function in VBA, Excel, to find a numeric value and return its row number. The value surely exists and when I use the FIND button in the sheet t...