Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Need to remove decimal point to allow import into actinic shopping software,
have tried find & replace does not always work? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Jerry,
Find and replace . with nothing should work whether your data is text or numbers. If your data is a return from a formula then you will need to either adjust your formula or do copypaste specialvalues before your find and replace. HTH Martin |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Give us some examples
"Jerry Lee" wrote: Need to remove decimal point to allow import into actinic shopping software, have tried find & replace does not always work? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Enter this macro:
Sub point_killer() For Each r In Selection r.Value = Replace(r.Text, ".", "") Next End Sub select the cells and run the macro. For example, if we start with: 1 1.1 1.12 1.123 1.1234 a.b a..b 1.2.3.4.5.6.7.8.9 .................. and run the macro, we get: 1 11 112 1123 11234 ab ab 123456789 -- Gary''s Student - gsnu200725 "Jerry Lee" wrote: Need to remove decimal point to allow import into actinic shopping software, have tried find & replace does not always work? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
in Excel 2007, how do you remove the decimal point in General | New Users to Excel | |||
Decimal point | New Users to Excel | |||
Converting 2-place decimal value to floating point decimal number with leading zero | Excel Discussion (Misc queries) | |||
decimal point | Excel Worksheet Functions | |||
FIXED 2 DECIMAL PLACES, MUST ENTER ALL ZEROES AFTER DECIMAL POINT. | Excel Discussion (Misc queries) |