hi i'm pretty new to this so bare with me..
i have a 8 coloumn's in a query that are calculated by functions, i now need to use these results in another function - can anybody help me with the syntax?
the full story goes that i have 15 tables of products, each product has 8 variations on price, so for one record i have the following:
[memory_pricing].[128Ram] has buyprice's of 1/5/10/20/50/100/200/500
these are converted to UKprices 1/5/10/20/50/100/200/500 by a function.
because my query [full_product_list] has too many headers i am writing a function to reference the calcualted results in the memory pricing query.
my code looks like this:
Dim P1, P5, P10, P20, P50, P100, P200, P500 As Integer
P1 = [memory Prices.UKPrice1]
P5 = [memory Prices.UKPrice5]
etc
i get a compile error : External name not defined
How do i reference these fields in my query
Any help would be much appreciated!!!
i have a 8 coloumn's in a query that are calculated by functions, i now need to use these results in another function - can anybody help me with the syntax?
the full story goes that i have 15 tables of products, each product has 8 variations on price, so for one record i have the following:
[memory_pricing].[128Ram] has buyprice's of 1/5/10/20/50/100/200/500
these are converted to UKprices 1/5/10/20/50/100/200/500 by a function.
because my query [full_product_list] has too many headers i am writing a function to reference the calcualted results in the memory pricing query.
my code looks like this:
Dim P1, P5, P10, P20, P50, P100, P200, P500 As Integer
P1 = [memory Prices.UKPrice1]
P5 = [memory Prices.UKPrice5]
etc
i get a compile error : External name not defined
How do i reference these fields in my query
Any help would be much appreciated!!!