Hi, I know you shouldn't store calculated values but this is a special case I believe.
I'm playing with inventory, we have cases, boxes and pieces. A case could have 4 boxes and each box has 12 pieces.
When I transfer inventory I use cases, so if I need to transfer only half a case I go .5.
Now I've come across a senerio where I may need to take inventory out so I will just enter a negative number -.5 for half a case. Works fine.
Here's the problem. I may only want to take out 6 pieces which is half a box, so I can't enter that in cases very easy, it would be like .0082 or something like that. So what I want to do is have another text box where I enter the number of pieces I want to remove and with math in the cases box it will say that's .0082 cases or whatever but it needs to store that value because that's the field I use for everything.
So how do I do that calculation and store it in the "casestransfered" field?
Right now I have it so I enter the pieces it does the math in an unbound textbox and then I enter what's in the calculated text box in the bound "casestransfered" field but I want it to store automatically from the unbound text box that's doing the math.