K
karaeloko
I have a form with a combo box to choose a flight number and then a command
button to requery the subform that is based on a PivotChart query.
How can I add several combo boxes so I can a plot a graph with several series.
This is the SQL code for my query:
SELECT tblRdayLeg.Ddate, tblRdayLeg.FltNum, tblRdayLeg.RSH
FROM tblRdayLeg
GROUP BY tblRdayLeg.Ddate, tblRdayLeg.FltNum, tblRdayLeg.RSH
HAVING (([tblRdayLeg]![FltNum] =
[Forms]![frmBookingsCurves]![cboFlightGraph]));
What I need is to have, let´s say, 2 combo boxes so I could choose 2
different flight numbers, so I would get a chart with 2 lines.
Thanks for your help!
button to requery the subform that is based on a PivotChart query.
How can I add several combo boxes so I can a plot a graph with several series.
This is the SQL code for my query:
SELECT tblRdayLeg.Ddate, tblRdayLeg.FltNum, tblRdayLeg.RSH
FROM tblRdayLeg
GROUP BY tblRdayLeg.Ddate, tblRdayLeg.FltNum, tblRdayLeg.RSH
HAVING (([tblRdayLeg]![FltNum] =
[Forms]![frmBookingsCurves]![cboFlightGraph]));
What I need is to have, let´s say, 2 combo boxes so I could choose 2
different flight numbers, so I would get a chart with 2 lines.
Thanks for your help!