Hey there,
I would like to ask a question to create a report when having the following data tables which are updated through a one main form and 2 sub forms.
table1
TrnNo pk-AN
TrnDate
Product
Machine
table2
RNO PK-AN
TrnNO FK
PrdDate
GoodQty
RejectQty
table3
RRNO PK-AN
RNO FK
CarNo
RRejectQty
Reason
* table3 is used to describe the reject details of Table2 like if
RejectQty = 10
so in table3 it will be
RRejectQty = 5
Reason = Crack
RRejectQty = 5
Reason = Bend
Now i am looking for a report where i can see the following sum by Prddate:
Prddate
product goodqty rejectqty Bend Crack
AA 10 10 5 5
How we can convert those reasons as column headings?
thanks
zee