Apologies ED -thought I cut and pasted my question in but clearly didnt.
Basically I have a lot of VBA code set up so that a sub form will act as a
filter table and I want to be able to base some charts on that selection
(ie
the contents of the subform). Now I can do this fine with a command button
linked to a query which draws the info from the main linked in .xls sheet.
However to save me writing a frightning amount of code if I could just get
the query to run of the subform it would be superb.
For my first graph a breakdown by country Ive managed to link the query on
to the form using
SELECT subform3.Country, Sum(subform3.[LCL CCY ALLOCATED]) AS [SumOfLCL
CCY
ALLOCATED]
FROM sheet1 AS subform3
GROUP BY subform3.Country;
It s just when I run the query it pulls straight from the main sheet and
ignores my subform without any error message
Maybe I could have a table created that just from the subform and i could
run my query off that table.
Appreciate the help
Eamonn
Ed Robichaud said:
It's difficult to answer a blank question, but based on your msg title,
you
appear to have it backwards. Queries are based on tables and/or other
queries. Forms (including sub-forms) use those queries as their record
source.