Thank you Rick and David for the replies...you both r right, but I guess I
should clarify again what I want:
I'm designing a complex database which consists of about 20 basic tables
and
each of them with about 14000 records and 10 fields. Using the query
expressions (translating original excel formulas into access queries), so
far
I have derived couple of more queries. Now want to derive another query
which
would be the result of a basic table and a query. but there is no common
field in them.
here r the table and the query:
Table (ID, Value)
1, 12
2, 14
3, 17
......
10, 25
etc.
Query (District, Typ1, Typ2, Typ3, .........)
1001, 12, 45, 87, ...
1002, 21, 47, 78, ...
1003, 30, 20, 98, ...
etc.
Now I want to build a query expression which will result like:
Query Result (District, Typ1Val, Typ2Val, Typ3Val ..........)
1001, 12*12, 45*14, 87*25
1002, 21*12, 47*14, 78*25
1003, 30*12, 20*14, 98*25
I hope now you can understand what I want. Is it possible?
Rick---> if it is possible to perform the query result with DLookup()
function, could you please let me know the code/expression?
David--> cost: [table1.quantity] * [table2.price] multiply two fields of
two
tables. Is there any simple expression to get above result?
Thanks a lot for your attention!!
Monjur
Is it possible to retrieve a query result which multiply a field value
of
one
table with a cell value (not field) of another table? I tried and
search a
lot but nothing shows me the way to accomplish the task. Any
suggestions
would be appreciated!!
Thaks in advance!!