I’m trying to display a list of possible meeting times. I do not want the meeting start times to show up if they are outside hours of work. The problem is that I can’t seem to use and and or statements in ways you would normally be able to with boolean logic. I would like to say ((hour>Start work hour) | | ((hour == start work hour)&&(minute> Start work minute)))
I can’t seem to figure out how to use parentheses or order the logic in the correct way. Does anyone know how to use parentheses or know a workaround?
Thanks!