Hi, I have a table called tblReport(CustName,Item,Qty) -> just an example
roughly this is the look inside the table
now I want that table to be exported to an Excel file. This is roughly my code:
with codes above, the excel file would look exactly like the table. But what I want is to look like this:
how can I do that? Any help is appreciated. Thankyou
roughly this is the look inside the table
Code:
|CustName |Item |Qty |
|A |ab |1 |
|A |pq |1 |
|A |zz |2 |
|B |qwe |1 |
|B |zz |1 |
now I want that table to be exported to an Excel file. This is roughly my code:
Code:
dim cust as string
dim item as string
dim qty as long
dim qry as string
dim dbs as database
dim rst as dao.recordset
set dbs=currentdb
qry="SELECT * FROM TblReport"
set rst=dbs.openrecordset(qry)
rst.movefirst
do while rst.EOF=false
cust=rst("CustName")
item=rst("Item")
qty=rst("Qty")
xlsheet.Range("A1").value=cust
xlsheet.Range("B1").value=item
xlsheet.Range("C1").value=qty
rst.movenext
loop
with codes above, the excel file would look exactly like the table. But what I want is to look like this:
Code:
|CustName |Item |Qty |
|A |ab |1 |
| |pq |1 | --> CustName is omitted because it is the same customer (A)
| |zz |2 | --> CustName is omitted because it is the same customer (A)
|B |qwe |1 |
| |zz |1 | --> CustName is omitted because it is the same customer (B)