Hello, sorry for yet another question
What I want to code now is:
IF ( Something = True AND Somethingelse = TRUE ) {
dosomething
}
Is there an "AND" operator I can use for this? I've mostly been using the code interface rather than the raw code screen, and can't see a way of adding an AND.
Or do I need to use nested IFs?
IF ( Something = True) {
IF ( Somethingelse = True) {
do something
}
}
psymann