remove trailing zeros from and add decimal point to character string in Excel

Margaret Martin

My values are combinations of numbers and letters. How do I a) remove trailing zeros (up to 2; avoid removing more than 2 trailing zeros) and b) put a decimal point after the 3rd character if there is 4 or more characters ? Some example values:

A61
A6000
A6051
A6050
A610
A611
A6200
A6201
Scott Craner

With what you have provided:

=LEFT(A1,1) & MID(A1,2,LEN(A1))/10^(LEN(A1)-3)

enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Best way to remove trailing zeros from a Decimal

From Dev

Cannot remove trailing zeros from decimal

From Dev

Remove leading and trailing zeros from a string

From Dev

Remove leading and trailing zeros from a string

From Dev

Add trailing zeros to string

From Dev

How to remove trailing zeros from decimal number in SQL Server?

From Dev

how to remove decimal trailing zeros in matlab

From Dev

remove trailing zeros from output

From Dev

iOS - remove trailing zeros from float WITHOUT converting to String?

From Dev

Using RegEx how do I remove the trailing zeros from a decimal number

From Dev

Remove insignificant zeros after the decimal point

From Dev

java convert string to int and remove trailing zeros

From Dev

Remove decimal point from a decimal string in spark Dataframe

From Dev

How to add zeros after decimal point

From Dev

How to add zeros after decimal point

From Dev

Swift - Remove Trailing Zeros From Double

From Dev

Objective C remove trailing zeros after decimal place

From Dev

how to remove undesirable trailing zeros when using Cast as Decimal?

From Dev

Format string with trailing zeros removed for x decimal places in Swift

From Dev

Display trailing zeros in a decimal number in python without returning a string

From Dev

Convert from string to double removes trailing zeros

From Dev

Convert from string to double removes trailing zeros

From Dev

Excel - Remove character from end of string

From Dev

Remove trailing zeroes after decimal from double

From Dev

Remove trailing '/' from rails string

From Dev

php - add comma thousands separator but remove trailing zeros

From Dev

php - add comma thousands separator but remove trailing zeros

From Dev

I need to remove leading zeros after a decimal point

From Dev

Reg Ex: Remove superfluous zeros and decimal point at the end of a number

Related Related

  1. 1

    Best way to remove trailing zeros from a Decimal

  2. 2

    Cannot remove trailing zeros from decimal

  3. 3

    Remove leading and trailing zeros from a string

  4. 4

    Remove leading and trailing zeros from a string

  5. 5

    Add trailing zeros to string

  6. 6

    How to remove trailing zeros from decimal number in SQL Server?

  7. 7

    how to remove decimal trailing zeros in matlab

  8. 8

    remove trailing zeros from output

  9. 9

    iOS - remove trailing zeros from float WITHOUT converting to String?

  10. 10

    Using RegEx how do I remove the trailing zeros from a decimal number

  11. 11

    Remove insignificant zeros after the decimal point

  12. 12

    java convert string to int and remove trailing zeros

  13. 13

    Remove decimal point from a decimal string in spark Dataframe

  14. 14

    How to add zeros after decimal point

  15. 15

    How to add zeros after decimal point

  16. 16

    Swift - Remove Trailing Zeros From Double

  17. 17

    Objective C remove trailing zeros after decimal place

  18. 18

    how to remove undesirable trailing zeros when using Cast as Decimal?

  19. 19

    Format string with trailing zeros removed for x decimal places in Swift

  20. 20

    Display trailing zeros in a decimal number in python without returning a string

  21. 21

    Convert from string to double removes trailing zeros

  22. 22

    Convert from string to double removes trailing zeros

  23. 23

    Excel - Remove character from end of string

  24. 24

    Remove trailing zeroes after decimal from double

  25. 25

    Remove trailing '/' from rails string

  26. 26

    php - add comma thousands separator but remove trailing zeros

  27. 27

    php - add comma thousands separator but remove trailing zeros

  28. 28

    I need to remove leading zeros after a decimal point

  29. 29

    Reg Ex: Remove superfluous zeros and decimal point at the end of a number

HotTag

Archive