Kieran Mort
New Member
I have two documents an excel spreadsheet which is a database of projects that have unique ID numbers and are not sorted.
The second document is a word document.
It is a form where people can type in the project ID number and it pulls information though from the excel spreadsheet via the use of ActiveX labels.
All works fine if I know the row number of the project I require and I put that into VBA for example. Cells(2,3)
Although I need the row index to be looked up so that it is not manually inserted.
X = (some sort of lookup based on the ActiveX text box where users type the project ID)
then I could use
cells(X,3) for all the labels.
any help would be great.
The second document is a word document.
It is a form where people can type in the project ID number and it pulls information though from the excel spreadsheet via the use of ActiveX labels.
All works fine if I know the row number of the project I require and I put that into VBA for example. Cells(2,3)
Although I need the row index to be looked up so that it is not manually inserted.
X = (some sort of lookup based on the ActiveX text box where users type the project ID)
then I could use
cells(X,3) for all the labels.
any help would be great.