#If statement error
17 messages · Page 1 of 1 (latest)
You didn’t close your else if??
why are there so many , 
else if (!Data)
that isn't exactly the direct issue, you could close it after, which would make it show as "closed"
the main issue is you're using , to separate what should be statements, but the , makes them expressions
if is not a valid expression, it can only be a statement
you should be using ; to separate statements
