T
TC
Looking for a little help with creating a line chart in a report. The chart
will be used to show Rate of Penetrations (ROP) on the Y-axis at a specific
depth on the X-Axis. I have the chart set up but I can not figure out how to
make the query so the graph only displays data for the individual hole. I
would like to have the report display one chart per hole.
Sample of data
HOLE DEPTH ROP
A3 0 4.21
A3 1 2.068
A3 1.43 2.26
A4 0 312.5
A4 .82 437.5
A4 1.64 437.5
Current SQL statement for the chart
SELECT penetration.hole, penetration.length, penetration.rate
FROM penetration;
will be used to show Rate of Penetrations (ROP) on the Y-axis at a specific
depth on the X-Axis. I have the chart set up but I can not figure out how to
make the query so the graph only displays data for the individual hole. I
would like to have the report display one chart per hole.
Sample of data
HOLE DEPTH ROP
A3 0 4.21
A3 1 2.068
A3 1.43 2.26
A4 0 312.5
A4 .82 437.5
A4 1.64 437.5
Current SQL statement for the chart
SELECT penetration.hole, penetration.length, penetration.rate
FROM penetration;