how can you convert an entry of 1 to first, 2 to second, etc.?

M

Michaeldc

I want to have an entry cell where you put numbers in and and output cell
which displays corresponding first, second, third etc
 
T

T. Valko

Create a lookup table like this:

...........J..........K
1.......1........first
2.......2.......second
3.......3.......third
4.......4.......fourth
5.......5.......fifth

A1 = 3

B1 formula:

=VLOOKUP(A1,J1:K5,2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top