I am trying to create a scatter chart where the point colour, marker size and marker style for each plot point are set based on parameters in my data table.
My table has about 50 rows of data, across six columns A to F. Column A = Name, B = X coordinate, C = Y coordinate, D = Marker size, E = Marker style, and F = Marker colour. I am trying to plot a scatter chart which has each point looking different from the others in shape, size and colour, depending on the value in their respective column for that row in the table.
I have built the VBA to create a scatter chart, and it works fine and I get the point labels working correctly, which shows me I am getting the right info pulling from the table per point. However, when I try and change the size, shape and colour parameters, ALL of the points change (i.e. they all turn into purple size 5 triangles), rather than each one being driven by its own parameters.
Stumped here. Any help or suggestions much appreciated.