This is kind of a weird one.
i know that to call a module through a query (say it's a module to find the minimum value amongst a number of fields), you would put:
and the code would be in the form of an array:
But is there code that could generate the field names to go:
?
Suppose i need the minimum of over 100 fields and don't want to type out 100+ [Field1] in the parenthesis.
Thanks!
i know that to call a module through a query (say it's a module to find the minimum value amongst a number of fields), you would put:
Code:
ModuleName([Field1],[Field2],[Field3],...,[Fieldn])
and the code would be in the form of an array:
Code:
Function ModuleName(ParamArray FieldArray() As Variant)
But is there code that could generate the field names to go:
Code:
ModuleName([B][I]HERE[/I][/B])
Suppose i need the minimum of over 100 fields and don't want to type out 100+ [Field1] in the parenthesis.
Thanks!