All, Thanks for the help. Here is an easy one for those of you that know what they are doing....
I'll have a formula that will be used in 10 queries. I'd like to setup one Public formula and reference it 10 times instead of having 10 separate full formulas in the 10 different queries. I looked this up and cannot quite find the answer.
Here is some detail:
Source tables.fields with the data are:
Assignment.BillRate
Multipliers.Period
(trust me there will be a relationship between the two)
The formula would be: BillValue = Assignment.BillRate * Multipliers.Period
So in queries the BillValue would be included in formulas, like this:
EXPR1: BillValue * 12
Question1: Is this the public function format?
Public Function BillValue() As Currency
BillValue = [assignments].[Billrate] * [Multipliers].[period]
End Function
Question 2: Can I call this in a formula, and is there a required format?
I'll have a formula that will be used in 10 queries. I'd like to setup one Public formula and reference it 10 times instead of having 10 separate full formulas in the 10 different queries. I looked this up and cannot quite find the answer.
Here is some detail:
Source tables.fields with the data are:
Assignment.BillRate
Multipliers.Period
(trust me there will be a relationship between the two)
The formula would be: BillValue = Assignment.BillRate * Multipliers.Period
So in queries the BillValue would be included in formulas, like this:
EXPR1: BillValue * 12
Question1: Is this the public function format?
Public Function BillValue() As Currency
BillValue = [assignments].[Billrate] * [Multipliers].[period]
End Function
Question 2: Can I call this in a formula, and is there a required format?