Graph points from a table on previous slide

I am new to CL and am trying to figure out how to do the following. I have a graphing calculator slide as Slide #2. Students will input values into a table on Slide #1. How do I get the table values from Slide #1 to automatically graph on the graphing calculator slide on Slide #2?

Any help would be appreciated! Thank you!

As long as the content of a column is numeric, you can turn it into a list in a graph using the CL:

numberList(`X`): tableName.columnNumericValues(1)

This would create list, X, from the first column of a table. Do something similar for another list, Y. Then, in the actual graph, (X,Y) will graph the points for the data.

Thank you. This helps!