Data Problem? (1 Viewer)

vbjohn

Registered User.
Local time
Yesterday, 20:22
Joined
Mar 22, 2002
Messages
75
I am having this problem and I am thinking that I need to convert the data.

Data:
7,300.00
600.50
400.40

What I am getting:
7,300.00600.50400.40

What I need is:
8,300.90

What I am doing is:
[SessPDm] + [InterimPD] + [DistTravelAmount]


I have Access 2000.

Any help would be great.
 

Mile-O

Back once again...
Local time
Today, 02:22
Joined
Dec 10, 2002
Messages
11,316
You are concatenating...

Val([SessPDm]) + Val([InterimPD]) + Val([DistTravelAmount])


Instead of the Val() function you might prefer to use the proper conversion function.

Try looking up CInt, CLng, CCur, etc to find which ones are the best for your operation.
 

vbjohn

Registered User.
Local time
Yesterday, 20:22
Joined
Mar 22, 2002
Messages
75
Thanks it works!
 

Users who are viewing this thread

Top Bottom