Hi,
You could do the following:
1> Use Import Wizard to create a new import filter, which imports the data into a workbook instead of a graph
2> On the Save Filters of the wizard, check the Save Filter check box, then give a name to your filter etc, and also check the "Specify advanced filter options" check box
3> On the page that opens next, add these script lines:
// Define ranges to point to cols 1, 2, 3 of worksheet
range r1=1, r2=2, r3=3;
// Plot col 2 versus 1 using template 1
plotxy iy:=(r1,r2) ogl:=[<new template:="My Template 1">];
// Plot col 3 versus 1 using template 2
plotxy iy:=(r1,r3) ogl:=[<new template:="My Template 2">];
Replace "My Template 1" etc with the name of your custom template. This will then create two graphs after the data has been imported into worksheet.
Easwar
OriginLab