I’ve built a form to plot survey results(see Picture). 10 questions with 2 values each(Importance and Rating)
Everything works great unless there are 2 points with the same values. The points are laid on top of each other so it looks like you’re missing a question.
I’m looking for ideas to vary the size of the points if they overlap.
Here is the code I used to plot the points:
Const conLeft = 1100
Const conTop = 900
_______________________
Dim rs As Recordset
Dim X As Integer
Set db = CurrentDb
Set rs = db.OpenRecordset(“qryChart”)
X = 0
rs.MoveFirst
Do While Not rs.EOF
Me(“Box4” & X).Top = rs!Importance * conTop
Me(“Box4” & X).Left = rs!Rating * conLeft
Me(“Box4” & X).Visible = True
X = X + 1
rs.MoveNext
Loop
Any Ideas would be welcome.
Thanks,
Scott