this is probably not possible but never know
i have a field in which i store names of fields used for the record's calculations.
for example,
the entries in the CalcField field are names of field whose values should be multiplied by the record's % to get the total.
how do i use that field in a query? i'd love it if it was possible to do something like this.
and for the record #1 the program will read it as
you get the idea?
thank you!!!!
i have a field in which i store names of fields used for the record's calculations.
for example,
Code:
ID CalcFIeld Percentage
1 LCTtlAmount 5
2 LCAmdAMount 4
3 LCTtlAmount 3
the entries in the CalcField field are names of field whose values should be multiplied by the record's % to get the total.
how do i use that field in a query? i'd love it if it was possible to do something like this.
Code:
[percentage]*"[" & calcfield] & "]"
and for the record #1 the program will read it as
Code:
[percentage]*[LCTtlAmount]
you get the idea?
thank you!!!!