Using Access 97.
I have a forecast accuracy database.
My users would like to be able to "play" with their numbers to see what their accuracy would be if things changed.
I have created a table tblScenario which contains the following fields:
item (Text)
histqty (number)
histfcst (number)
and a form frmScenario which has those columns and 2 calculated fields:
FA (1-((abs([histqty]-[histfcst]))/[histqty])
Con ([histqty]/[histfcst])
it also contains a summary of the fields: [histqty] [histfcst] [FA] [Con]
For example
ITEM HISTQTY HISTFCST FA CON
B00800700 1030 929.36 90.2% 110.8%
B00800800 10130 12596.31 75.7% 80.4%
B00800900 1710 3086 19.5% 55.4%
SUMMARY 12870 16611.67 70.9% 77.4%
What I want to happen is the user can change the value of [histfcst] (on the form - I'd want original data to remain intact if possible), and once they did The FA and Con for that item would change as well as the summary section #'s would change accordingly.
Thanks for your help!
Lisa.
I have a forecast accuracy database.
My users would like to be able to "play" with their numbers to see what their accuracy would be if things changed.
I have created a table tblScenario which contains the following fields:
item (Text)
histqty (number)
histfcst (number)
and a form frmScenario which has those columns and 2 calculated fields:
FA (1-((abs([histqty]-[histfcst]))/[histqty])
Con ([histqty]/[histfcst])
it also contains a summary of the fields: [histqty] [histfcst] [FA] [Con]
For example
ITEM HISTQTY HISTFCST FA CON
B00800700 1030 929.36 90.2% 110.8%
B00800800 10130 12596.31 75.7% 80.4%
B00800900 1710 3086 19.5% 55.4%
SUMMARY 12870 16611.67 70.9% 77.4%
What I want to happen is the user can change the value of [histfcst] (on the form - I'd want original data to remain intact if possible), and once they did The FA and Con for that item would change as well as the summary section #'s would change accordingly.
Thanks for your help!
Lisa.