A family of Microsoft relational database management systems designed for ease of use.
Got it. You are using a "Round Down" rule? You also want to round to two decimal points, rather than an integer.
You can achieve that by multiplying the result of your calculation by 100. That shifts the decimal two places to the right.
Next use Int() to remove any remaining decimal places from that result. Your example contains 4 decimal places, so Int() would remove the last two.
Next divide by 100 to return to the original 2 decimal places required.
Try this:
Int(Round(Me.txt_GrossWage * DLookup("WA_PaidLeave_Rate", "qry_TaxRate"), 4) * DLookup("PaidLeave_Muliplyer", "qry_TaxRate") * 100)/100
If it returns consistently correct results, you're good to go. If if not, we'll need to explore further.