combine number and text fields

lipin

Registered User.
Local time
Today, 16:06
Joined
May 21, 2002
Messages
149
I am trying to combine two fields into 1 with a query.
This is the field in the query. It works fine. However, [HsAbsent]is a numeric field with inputmask = 0.00. So even the whole numbers are in the table with 2 blank decimal points. This is the way I need it. But then when they are combined in the query below it doesn't show the last two decimal places unless something was entered in them like 1.23. Well this throws off the alignment of the
Code:
 off two places on some lines.

How can I get the HrsAbsent to display the trailing zeros?

Expr1: [HrsAbsent] & "     " & [Code]
 
Expr1: Format([HrsAbsent],"0.00") & " " &
Code:
[/FONT]
 
Perfect. Thank You.
 

Users who are viewing this thread

Back
Top Bottom