Hi,
I have a combo box that has a calculation in its after update event procedure that reads = ([TOTFLDSQ] / 4) + 0.4 and it places the sum in a text box called [feltrolls]
Let’s say [TOTFLDSQ] = 33.88 / 4 = 8.47 + 0.4 = 8.87
The [TOTFLDSQ] text box is dynamic per estimate has a different value in it per invoice#/estimate.
The reason I have the + 0.4 is to round up the number, the text box [feltrolls] format set to Fixed. So the value that is displayed is 9 not 8.87 which is correct.
Now in another text box called [totfeltprice] I have a calculation in its control source=[feltrolls]*[feltdollaramt]. [Feltdollaramt] is static it's always the same =$17.00
So the calculation that gets computed in [totfeltprice] is 17 * 8.87
My problem is that I need the calculation to be 17 * 9 not 17 * 8.87.
Is there a way each time the calculation = ([TOTFLDSQ] / 4) + 0.4 gets computed to have the sum set to a whole fixed number like 9?
Thanks—Any help will be greatly appreciated.
I have a combo box that has a calculation in its after update event procedure that reads = ([TOTFLDSQ] / 4) + 0.4 and it places the sum in a text box called [feltrolls]
Let’s say [TOTFLDSQ] = 33.88 / 4 = 8.47 + 0.4 = 8.87
The [TOTFLDSQ] text box is dynamic per estimate has a different value in it per invoice#/estimate.
The reason I have the + 0.4 is to round up the number, the text box [feltrolls] format set to Fixed. So the value that is displayed is 9 not 8.87 which is correct.
Now in another text box called [totfeltprice] I have a calculation in its control source=[feltrolls]*[feltdollaramt]. [Feltdollaramt] is static it's always the same =$17.00
So the calculation that gets computed in [totfeltprice] is 17 * 8.87
My problem is that I need the calculation to be 17 * 9 not 17 * 8.87.
Is there a way each time the calculation = ([TOTFLDSQ] / 4) + 0.4 gets computed to have the sum set to a whole fixed number like 9?
Thanks—Any help will be greatly appreciated.