View Single Post
  #2  
Old April 13th, 2005, 12:52 PM
Fredrik Wahlgren
external usenet poster
 
Posts: n/a
Default


wrote in message
...
I have a bowling league schedule that looks like this:
Lanes 1 2 3 4 5 6 7 8 9
Teams1-2 3-4 5-6 7-8 9-10 11-12 13-14 15-16 17-18
The top numbers represent lanes or alley numbers, and the
second row of figures represent the team members.The team
members numbers represent a name from a list. For this
question the names on the list are a,b,c,d,etc through r
(18 total) I would like to have formula that I could
change the team members numbers to team members names,
i.e,; 1=a, 2=b, 3=c, etc all the way through the number
18 and letter r. I cannot write the formula, I need
someone to give me a details of how to do it. Thanks, WAB


Assuming the number 1 is in A1, use =CHAR(A1+96) to get an "a". If you pass
2, it will return "b".

/Fredrik