I have a condition:
if (myvar >= 1.00)
{ print dot}
else {do nothing}
I get the unassigned variable error if I leave the else out. So I have to assign myvar to something, so I chose 0. But now I get a dot at every bar on the zero line.
I only want a dot when (myvar >= 1.00) and nothing if it's < 1.00. How is this done?
Thank you.

Comment