Convert EXP number to real number - excel

I get following number in Excel and I have to convert it to a real number. How can I do that?
I get
+24.21E+00 or +2.8954E+03
I need
24,21 or 2895,4
Thank you very much!
SOLUTION in German (Change point seperator to comma and to decimal number)
=WERT(ERSETZEN(O73;FINDEN(".";O73);1;","))

If a value is in A1 then use: =NUMBERVALUE(A1)
Note: If your locale uses , for the decimal point but the string you have uses . then do =NUMBERVALUE(A1;".")
For Excel 2010:
=VALUE(CLEAN(SUBSTITUTE(A1;".";",")))

Use the Format Cells Dialog:
From the Menu Bar.

Related

Remove all except 1 dot from text string and convert into number

I have a text string which reflects thousand separators as a dot but also the decimal.
I want to convert this to a number but retain the decimal.
1.056.865.39 should be 1056865.39
6.685.3 should be 6685.3
I've tried substitute and replace but I can't work out how to retain the last decimal.
Any ideas how to do this in excel?
Try:
=SUBSTITUTE(TEXTBEFORE(A1,".",-1),".",)+TEXTAFTER(A1,".",-1)/100
Old Excel versions:
=NUMBERVALUE(SUBSTITUTE(D13,".",",",LEN(D13)-LEN(SUBSTITUTE(D13,".",))),",",".")
Excel 2013:
=SUBSTITUTE(A1,".","")/10^(1+(LEFT(RIGHT(A1,3))="."))

How to remove all decimal points, but retain value In Microsoft Excel?

I need to display with no decimal, but retaining the numbers that
appear after the last decimal. For example, given `03.1037.190
I tried roundup and trunct but not sure how it works.
Try this on a string where . could be on a dynamic spot
=SUBSTITUTE(A1,".","",LEN(A1)-LEN(SUBSTITUTE(A1,".","")))
Or when your string always follows the same pattern ##.####.####.## you could try:
=REPLACE(A1,13,1,"")
The question is quite unclear as you have a value with the same thousand and decimal delimiter and also 4 numbers between the delimiters. It would help a lot if you specified the actual number without thousand delimiters.
Assuming there are no decimals (31.037.190.301): remove "." using:
=SUBSTITUTE(A1,".","")
and Excel will recognize it as a number

How to put comma in a number excel

I have two numbers : 7,8 and 6,8.
When I multiply these numbers I get #VALUE!. I know, this happens because excel thinks, these numbers are strings because of the comma. But i cannot use separator . (point) because in my task, numbers are with , (comma). I tried different number functions, but all of them converts numbers with point (eg. 7.8 , 6.8). What I need to do? Thanks for advices.
To multiply them as whole numbers, use:
=SUBSTITUTE(A1,",","")*SUBSTITUTE(B1,",","")
to display 5304. To multiply as decimal fractionals, use:
=SUBSTITUTE(A1,",",".")*SUBSTITUTE(B1,",",".")
to display 53.04
Go to Advanced Options
Deselect "Use System Separators"
Fill in comma for decimal and space for thousands
Now you can do it:
This will make the change for all Excel documents.
An alternative, which will make the change throughout your system, would be to change your Windows Regional settings the same way. Be sure to change both number and currency if you do that.

Converting 12.41 to 0000001241 in excel

Basically what the title says. I need to convert cells with dollar values into a 10-digit format that will be a feed into a database program.
So, is there a way to custom format a cell so that I can point it towards a cell with $12.41 (for example), and have it automatically convert to 0000001241?
I already figured out how to get a cell to covert into 10 digit format, but for some reason it ignores the numbers after the period (the 41 cents).
Please try:
=TEXT(SUBSTITUTE(100*A1,".",""),"0000000000")

How to convert 14 bit Hex to Decimal

I need to be able to convert 047C1BEA3A2480 into Decimal. This should convert to 1262359242482816. I have a large amount of hex numbers that need converting so would need a formula or VB script.
I have tried some things including a VB Module, however with this I need to prefix the number with 0X but then gives me a decimal number that is out by 4.
Any ideas would be great.
Use the inbuilt CDec function
Debug.Print CDec("&H" & "047C1BEA3A2480")
This will give you 1262359242482816
Screenshot
Split into 2 7-digits and use the HEX2DEC function. Unfortunately, Excel cannot handle that big a number, so it is rounding when you put it back in Excel. For exmaple, try to paste the decimal version into Excel. But if you want the formula anyway.
=HEX2DEC(LEFT(A4,7))*16^7+HEX2DEC(RIGHT(A4,7))
Otherwise, use Siddarth's solution and put it in Excel as Text.

Resources