I'm new in access vba and report. I want write a report from following resultset:
Code:
dept div unit appl actual
----- ---- ---- ---- -------
T&Y IT oper SAP 10
T&Y IT oper DST 20
T&Y IT calu PPP 30
T&Y IT calu PPP 30
T&Y AC plat SAP 20
T&Y AC plat SAP 40
T&Y AC supp SAP 80
T&Y AC supp PPP 30
The output:
dept div unit appl actual
----- ---- ---- ---- -------
T&Y IT oper SAP 10
DST 20
calu PPP 30
PPD 30
AC plat SAP 20
SAT 40
supp SAP 80
PPP 30
Can anybody tell me how to write the VBA code to do that?
Thanks