How to repalce numbers after a decimal

D

dpscoupe

Lets say I have a column of numbers, that looks like this:

10.242
11.817
12.915
14.805

and I want it to look like this:

10.95
11.95
12.95
14.95

What function could be used to accomplish this?
 
R

RagDyeR

One way:

=INT(A1)+0.95

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

Lets say I have a column of numbers, that looks like this:

10.242
11.817
12.915
14.805

and I want it to look like this:

10.95
11.95
12.95
14.95

What function could be used to accomplish this?
 
R

Ron Coderre

Try this:
Select the range of values
Edit>Replace
Find what: .*
Replace with: .95
Click [Replace All]

Does that help?

***********
Regards,
Ron
 
Top