Here's more detail...
I have a Parent tabular query and a Child tabular query. In each query, I select week_id, dt, store_id, total(fact1), total(fact2). Then, in the Parent query I have a filter where I set Parent.dt = Child.dt and Parent.store_id = Child.store_id, and I pull the Child facts into the Parent query. However, in my report list I only want to group the data by week_id and dt. In the Query, I have only week_id and dt as dimensions. However, I still get a row of data for each store_id under each date in the list report, like so:
Week_id Dt fact1 fact2 fact3
fact1 fact2 fact3
fact1 fact2 fact3
Dt fact1 fact2 fact3
fact1 fact2 fact3
etc.
I can't really set the store_id to be a fact, because I think it will mess up my filter, where I am joining the Parent Query to the Child Query. I WAS just selecting week_id, dt, fact1, fact2, etc. and joining on dt, but I encountered a performance problem (see my posting titled "ReportNet Query Performance"

.