K
KC_Cheer_Coach
Is there a way to format a field in a query to currency and display it like
this:
-$4,650.00
instead of this:
($4,650.00)
?
this:
-$4,650.00
instead of this:
($4,650.00)
?
Is there a way to format a field in a query to currency and display it like
this:
-$4,650.00
instead of this:
($4,650.00)
?
John Spencer said:A calculated field will yield a string
Format([SomeField],"#,###.00;-$#,###.00")
Or set the format property of the column or the control you are using the
value for.
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
KC_Cheer_Coach said:Is there a way to format a field in a query to currency and display it like
this:
-$4,650.00
instead of this:
($4,650.00)
?
John Spencer said:A calculated field will yield a string
Format([SomeField],"#,###.00;-$#,###.00")
Or set the format property of the column or the control you are using the
value for.
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
KC_Cheer_Coach said:Is there a way to format a field in a query to currency and display it like
this:
-$4,650.00
instead of this:
($4,650.00)
?