View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Vacuum Sealed[_2_] Vacuum Sealed[_2_] is offline
external usenet poster
 
Posts: 87
Default Getting in xcel in 1 cell txt valua based on number in other cell

Jack

The other option might be to use a Lookup.

you could have another sheet "YourOtherSheet" with a list of the numbers and
their respective responses.

A B

1 Your Message#1
2 Your Message#2
3 Your Message#3

Etc

Back to your Main sheet

In Cell B1

=Vlookup(A1,YourOtherSheetName!A1:B25,2,False)

Not sure if you will need to copy the formula down to other cells below, but
if you do, then do as required.

HTH
Mick