I have an aggregate query which brings together results from six separate queries.The six sub-queries are based on a table which changes every month. They calculate a % based on categories. The categories may come and go throughout the year, with the result being that one or more of the sub-queries may return data in one month but not the next. The main query puts all these percentages together in a report. The problem I am having is that if one of the sub-queries is empty, then the entire main query comes back empty. I would like for the main query to return the percentages for the categories where there is data and ignore the empty sub-queries. I have tried 'Nz' and 'IIf' in different ways but with no success. Can anyone help?
Thanks!
Thanks!