extract decimal portion of a number

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to extract the decimal portion of a number....any ideas how?

for example, I have a SINGLE variable that will read, for example, 10.83.

Hope do extract the decimal (.83) portion and place into a seperate variable
for processing.

Thx
 
Ed said:
I need to extract the decimal portion of a number....any ideas how?

for example, I have a SINGLE variable that will read, for example,
10.83.

Hope do extract the decimal (.83) portion and place into a seperate
variable for processing.

Thx

Example:

v = 10.83
Debug.Print v - Fix(v)
 
Back
Top