I can't figure this out for the life of me. I have several fields that are set up as currency, and all have a decimal place of 2. I am summing some of them in the report footer, and it will be a couple cents off every time. The syntax I'm using is =Sum([FapAdj])
I read another question similar to this one and the answer was that it was only rounding the display to 2 decimal places and not necessarily storing the data as 2 decimal places. How do I make sure that's not the case with my field as well? I checked the fields in both the table and in the form itself, and both have decimal places of 2.
Another twist is that some of the fields are actual calculations themselves. I have an event where On Focus, it suggests an amount based on fields they've entered previously. The user can either tab through to accept this amount, or type over it to enter a new amount. I would guess that's where my fractions of cents are coming from?? But I can't figure it out. An example of this is:
FapAdj = (([Total Charges] - [ThirdPartyPmt] - [PtPmt]) * [Percent]) / 100
I read another question similar to this one and the answer was that it was only rounding the display to 2 decimal places and not necessarily storing the data as 2 decimal places. How do I make sure that's not the case with my field as well? I checked the fields in both the table and in the form itself, and both have decimal places of 2.
Another twist is that some of the fields are actual calculations themselves. I have an event where On Focus, it suggests an amount based on fields they've entered previously. The user can either tab through to accept this amount, or type over it to enter a new amount. I would guess that's where my fractions of cents are coming from?? But I can't figure it out. An example of this is:
FapAdj = (([Total Charges] - [ThirdPartyPmt] - [PtPmt]) * [Percent]) / 100
Comment