Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes ! that was something new I was looking for.
Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
To change numbers formatted as text to real numbers you can use the ABS function: =ABS(A1) Regards! Jean-Guy "claude jerry" wrote: Yes ! that was something new I was looking for. Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
but
refering to some other context, If I have a Text value say '-235 and I want to convert this Text into Number -235 . . . =Abs() will , show convert the number as positive 235, "pinmaster" wrote: Hi, To change numbers formatted as text to real numbers you can use the ABS function: =ABS(A1) Regards! Jean-Guy "claude jerry" wrote: Yes ! that was something new I was looking for. Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you are absolutely correct, the abs function will return a positive
number...maybe someone else has a solution for that. Regards! Jean-Giu "claude jerry" wrote: but refering to some other context, If I have a Text value say '-235 and I want to convert this Text into Number -235 . . . =Abs() will , show convert the number as positive 235, "pinmaster" wrote: Hi, To change numbers formatted as text to real numbers you can use the ABS function: =ABS(A1) Regards! Jean-Guy "claude jerry" wrote: Yes ! that was something new I was looking for. Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about:
=SIGN(A1)*ABS(A1) ? -- Regards, RD ----------------------------------------------------------------------------------------------- Please keep all correspondence within the Group, so all may benefit ! ----------------------------------------------------------------------------------------------- "pinmaster" wrote in message ... you are absolutely correct, the abs function will return a positive number...maybe someone else has a solution for that. Regards! Jean-Giu "claude jerry" wrote: but refering to some other context, If I have a Text value say '-235 and I want to convert this Text into Number -235 . . . =Abs() will , show convert the number as positive 235, "pinmaster" wrote: Hi, To change numbers formatted as text to real numbers you can use the ABS function: =ABS(A1) Regards! Jean-Guy "claude jerry" wrote: Yes ! that was something new I was looking for. Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes...also found this to work as well:
=IMREAL(A1) Regards! Jean-Guy "RagDyeR" wrote: How about: =SIGN(A1)*ABS(A1) ? -- Regards, RD ----------------------------------------------------------------------------------------------- Please keep all correspondence within the Group, so all may benefit ! ----------------------------------------------------------------------------------------------- "pinmaster" wrote in message ... you are absolutely correct, the abs function will return a positive number...maybe someone else has a solution for that. Regards! Jean-Giu "claude jerry" wrote: but refering to some other context, If I have a Text value say '-235 and I want to convert this Text into Number -235 . . . =Abs() will , show convert the number as positive 235, "pinmaster" wrote: Hi, To change numbers formatted as text to real numbers you can use the ABS function: =ABS(A1) Regards! Jean-Guy "claude jerry" wrote: Yes ! that was something new I was looking for. Just for my extra information. . How will I change a Text 1234 to Number 1234 I guess for this Max's trick works well Thanks both you guys "pinmaster" wrote: Hi, You can also use a formula without changing the cells format, something like this: =VLOOKUP(TEXT(A1,"#"),table,2,0) Cheers! Jean-Guy "claude jerry" wrote: I have a Table with foll Detail Which is used for Vlookup (This is created by spooling data from a software package) Id Name Date Fee 129 Tom 15/12/07 500 158 Kat 14/11/01 450 The above id's (129 and 158 etc ) are Text values I.e if I use a test, =Istext(Id Cell) it gives me "True" Our head office sends me an excel File Id Name Date Fee 129 Blank Blank Blank The Id's they sent are in Number format I used a Test =Isnumber(Id cell) it gives me "True" I am using a VlookupFormula to fill the Blank information sent by Headoffice by refering to by data stored in the first table. but since in the Original table the Id's are in Text format and the Id's in the second table are Number. Vlookup gives an error. How can I convert these Numbers to text, or Text to Numbers. Format Cells Numbers . . .. does not help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert text to number | Excel Discussion (Misc queries) | |||
convert number to text w/ error checking sign | Excel Worksheet Functions | |||
Convert text number to number formate | Excel Discussion (Misc queries) | |||
convert text-format number to number in excel 2000%3f | Excel Discussion (Misc queries) | |||
not able to convert text, or graphic number to regular number in e | Excel Worksheet Functions |