J
Janis
In a make query there are 2 concatenated fields that end up as text fields in
a Excel report output which are the maximum and minimum of a set of cells.
We just need the fields the max and minimun fields not the concatenated
fields. So I added the fields to a table and hopefully to all the related
queries.
Then in trying to output it to Excel I added
..cells(lrow,28)= rsData!minticketprice
..cells(lrow,29)=rsData!maxticketprice
..cells(lrow,30)=rsData!minpromoprice
..cells(lrow,31)=rsData!maxpromoprice
the rsData is recordset data
the lrow is just a counter as it loops through
I am wondering why does it not think it is in the collection?
Does that mean I missed adding the fields to a query or table somewhere?
thanks,
a Excel report output which are the maximum and minimum of a set of cells.
We just need the fields the max and minimun fields not the concatenated
fields. So I added the fields to a table and hopefully to all the related
queries.
Then in trying to output it to Excel I added
..cells(lrow,28)= rsData!minticketprice
..cells(lrow,29)=rsData!maxticketprice
..cells(lrow,30)=rsData!minpromoprice
..cells(lrow,31)=rsData!maxpromoprice
the rsData is recordset data
the lrow is just a counter as it loops through
I am wondering why does it not think it is in the collection?
Does that mean I missed adding the fields to a query or table somewhere?
thanks,