Hi,
I have one field (table) with price and I have added the current GST (percentage) from another table and field.
In the query I have made a query field "total" and entered the formula.
Price is with Currency - dollar and GST is Currency - percent in their table with 2 decimal each.
I want the price to round have 10% added to it so $4.40 added with % however I am getting $4.50 - a round down.
The total is in currency format (query field properties).
I'm assuming it's just adding the unit 10 and then adding it instead of calculating it as a percentage...?
I've also added currency to the price properties in the query and percentage to the gst in the query without much affect.
Function so far.
What am I doing wrong here....Code:Total: IIf([GSTCheckBox]=True,[CostPriceExGST]+[GSTPercent],Val([CostPriceExGST]))