Curtis_B Posted July 12, 2006 Posted July 12, 2006 I come from a php programming background. I'm trying to do something in filemaker where the script would check if something exists, and if it does not, then carry out certain procedures. In php, it's a simple if statement like this: if(!$variable){ then do this; } Let me know if you can tell me how to do this, I appreciate it. Curt
BrentHedden Posted July 12, 2006 Posted July 12, 2006 It's really not any different in FileMaker - use the isempty command to find if something is empty - IF isempty ($variable) then do this ELSE do this instead END IF Alternately, you can use NOT ISEMPTY to see if something is in there.
Recommended Posts
This topic is 6708 days old. Please don't post here. Open a new topic instead.
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 accountSign in
Already have an account? Sign in here.
Sign In Now