You can use vertical look up for this.
First create a list that can be hidden later. The first column has your job number, the second the job name. For the formulas sake, name this JOBLIST in the name box.
Now put the following formula in B1
=VLOOKUP(A1,joblist,2,FALSE)
If you want a cleaner look, you can add this if statement so you don't get an error when nothing is in A1
=IF(A1="","",VLOOKUP(A1,joblist,2,FALSE))
good luck
Hey IML,
Thanks alot, it works like a charm!
Thanks again,
Sean
I'm sorry IML I am having a problem. What exactly am I supposed to name, "joblist"? Am I supposed to select the entire column in the hidden list and then type "joblist" into the Name Box? Or Am I supposed to select both columns in the hidden list and type "joblist" into the Name Box? or? I keep getting #name? and #n/a error messages.
You would name both rows joblist or something similar. To avoid names, you could just put the range in by cell name. For example:
=VLOOKUP(A1,$K$1:$L$10,2,FALSE)
where you're list of numbers is in K1:K10 and the corresponding names is in L1:L10. The N/A error means that the formula is not finding a match for the item entered in A1 in your list.
Hope that helps.
Thanks again IML, now it works 100%.
You rule!
Sean