Home |
Search |
Today's Posts |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have you tried this
Dim intRowA intRowA = 1 Do while Range("A" & intRowA) < strName intRowA = intRowA + 1 Loop Range("B" & intRowA) = value Range("C & intRowA) = value f this post helps click Yes -------------- Jacob Skaria "Memphus01" wrote: I am doing a terrible job of explaining this... thanks for your patience. in userform1--i have three combo boxes: Name Rate Pos I would like Name and Rate to control columns B and C of current page where column A matches Pos as entered on form and where B and C are blank. does that make sense? "Howard31" wrote: If I understood correctly you want to enter values in Column A and B in the row that matches the selection in the Combo for the oositions, in that case I think there is 2 solutions, 1. Use the Find Method of the Range Object to find the cell that matches your selected value from the combo (The Find Method returns a Range object so you can use the range and offset it to column A and B), 2. find the the cell in column A by using the ListIndex property of the Combo, this will only work if the combo is populated by Cilumn A, and you might need to ajust the return value of ListIndex by -1 or more. -- A. Ch. Eirinberg "Memphus01" wrote: I have created a form that allows me to enter names based on a source data field. Form uses combo box to allow me to ensure I do not mispell names (i have vlookups tied to those names) and it allows me to enter a current rate (also combo box with rowsource) and also a line for position. I would like to be able to have that form control a value in a field, but the field is variable. For example: A B C 1 Position Name Rate 2 Cook 3 Cook 4 Front End 5 Front End 6 Front End 7 Front End 8 Front End 9 Clean Up I would like for the form to enter the name I looked up and the salary I input into the next available B,C column for the Position I enter for the current page. Is there a way to create a variable control source? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2007 Form Control/ActiveX Control font difference | Excel Discussion (Misc queries) | |||
variable form control | Excel Programming | |||
Variable Reference to a Form Control | Excel Programming | |||
Tool Tip Text for Form control/ Active-X control | Excel Programming |