views:

1378

answers:

2

In crystal reports, how do you remove leading zeroes?

I realize for the number 0000012313, you can use right(0000012313, 5) and return 12313; however this is presuming this is a fixed length.

any ideas?

thanks in advance

+1  A: 

Use the VAL() function.

A. Rex
+1  A: 

Use cint(00000123)

Rn