Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  View Answers    Answer this question    Ask a question  
 

Jeter62
May 18, 2010, 08:25 AM
How can I get a 9-digit numeric datapoint to format as text, and link up to text? I was able to convert a column of 9-digit Social Security Numbers to 9-digit text, but they don't link up to =if statetments as I try to match them up. Thanks for your help

ebaines
May 18, 2010, 09:09 AM
You can use the function = text(cell,format), where format = 0 (meaning you want an integer as text). For example, if cell A1 has the number 123.0, and in cell A2 you put = TEXT(A1,0), you'll get "123" as text. You can then use functions like =if and =concatenate to manipulate the text.

KISS
May 18, 2010, 09:27 AM
I don't know if you know this, but preceding a number with a a single quote ['] will force the number to be text.