I am trying to write a script that divides one cell with another. I
first got an arithmetic error and went to the blogs and found out that's
becuase it was trying to divide it by zero. So, I followed the suggested
formula, which is an if/then formula:a4.rawValue = if (a2.rawValue>0)
then (a3.rawValue/a2.rawValue) endifHowever, when I do this, I get the
following error:Syntax error near token 'then' on line 2, column 35.I
have tried using spaces, commas, everything and it just will not go
away. I...