C
comish4lif
I am writing a query to determine value of baseball players based on
past and projected performance. One of the statistical categories that
I wish to measure is called TB (Total Bases). In the Query, TB is
calculated using this formula:
TB: [H]+[2B]+2*[3B]+3*
. So far, so good.
Next in the query, I have a query that formulates the value of [TB] in
a constrained budget using [TB] in the formula.The formula looks like
this:
TB_VALUE:
IIf(0.47+0.49*(([TB]-160)/77)<0,0,0.47+0.49*(([TB]-160)/77))
I have several formulas like this in the query, when I run the query, I
am prompted for the value of [TB] and the others. Why is this? Can I
change the calculation order? How do I make it stop?
This is going to be a bigger problem later when I build forms and
reports and have to clear the prompt each time I reload the form and
rerun the query. Any help?
past and projected performance. One of the statistical categories that
I wish to measure is called TB (Total Bases). In the Query, TB is
calculated using this formula:
TB: [H]+[2B]+2*[3B]+3*
. So far, so good.
Next in the query, I have a query that formulates the value of [TB] in
a constrained budget using [TB] in the formula.The formula looks like
this:
TB_VALUE:
IIf(0.47+0.49*(([TB]-160)/77)<0,0,0.47+0.49*(([TB]-160)/77))
I have several formulas like this in the query, when I run the query, I
am prompted for the value of [TB] and the others. Why is this? Can I
change the calculation order? How do I make it stop?
This is going to be a bigger problem later when I build forms and
reports and have to clear the prompt each time I reload the form and
rerun the query. Any help?