Jump to content

Trouble with Send after If


 Share

Recommended Posts

I'm having trouble with the send after an IF statement.

So far, my code looks like

---------------

if $ID[$i][1] = "NOVALUE" then

send("1/1/1970")

endif

---------------

as just a small example. However, within an If statement, I can't get anything to send. It parses the IF statement, as far as I can tell, but skips over the sending part. Any suggestions/fixes/comments?

-Alo

Link to comment
Share on other sites

is "novalue" something u can use?

if u need to use a lot of those "novalue"s u could use a $Novalue and call that whatever you want what a "novalue" is.

$Novalue = ;something you want it to be

if $ID[$i][1] = $Novalue then
send("1/1/1970")
endif

any help?

Edited by omglol
Link to comment
Share on other sites

is "novalue" something u can use?

if u need to use a lot of those "novalue"s u could use a $Novalue and call that whatever you want what a "novalue" is.

$Novalue = ;something you want it to be

if $ID[$i][1] = $Novalue then
send("1/1/1970")
endif

any help?

NOVALUE is just a text string from some data I'm pulling.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...