What is wrong with this code....
if (
(varPivot1 > varPivot2) and (varPivot1 > varPivot3)
varMaxPivot = varPivot1;
I keep getting syntax error about a missing paren
if (
(varPivot1 > varPivot2) and (varPivot1 > varPivot3)
varMaxPivot = varPivot1;
I keep getting syntax error about a missing paren
Comment