andyhutch119
Programmer
hi
I've created a spreadsheet that populates data from an access data base which stores time_sheet details for staff. The first column/row holds the persons name,also I use the name box to store the their employee number using this code
'// Insert Label reference for each team member
Range(.Cells(introw, mintStartcol), _
.Cells(introw, mintStartcol)).Select
ActiveWorkbook.Names.Add Name:="Empid_1221" _
, RefersToR1C1:= _
Range(.Cells(introw, mintStartcol), _
.Cells(introw, mintStartcol))
Is there a way to access the name for this cell "Empid_1221" if I know the row and column so as to assign it to a variable in my procedure
Thanks for any help
I've created a spreadsheet that populates data from an access data base which stores time_sheet details for staff. The first column/row holds the persons name,also I use the name box to store the their employee number using this code
'// Insert Label reference for each team member
Range(.Cells(introw, mintStartcol), _
.Cells(introw, mintStartcol)).Select
ActiveWorkbook.Names.Add Name:="Empid_1221" _
, RefersToR1C1:= _
Range(.Cells(introw, mintStartcol), _
.Cells(introw, mintStartcol))
Is there a way to access the name for this cell "Empid_1221" if I know the row and column so as to assign it to a variable in my procedure
Thanks for any help