Without resorting to VBA, I wasn't able to use XY data in the form (23 , 67) directly without first splitting the X and Y values apart into seperate columns. Assuming the data is in column A, and the X and Y data are in Cols B and C I used the following formulas to split X and Y apart.
=VALUE(MID(A2,2,FIND(",",A2)-2))
=VALUE(MID(A2,FIND(",",A2)+1,LEN(A2)-FIND(",",A2)-1))
From there you can make a chart in the usual fashion.
I attached a sample worksheet with a chart using this method.
BTW When you say that you want 0,0 as the origin do you actually intend to say that you want all 4 quadrants in the graph with 0,0 in the middle of them? If so, It's just a matter of adjusting each axis to fixed values like -50 to 50 instead of using automatic values.
Gordon
Bookmarks