Hi there, thanks for taking the time to read my question! New to Airtable and it's formulas - what I'm trying to do is create a simple Hours of Operation setup where a user can select the days of the week a business is open (stored in Open Days), add the open hours for each day, then combine the values to show the complete hours of operation (combined in Hours of Operation field). I'm starting with just Monday and Tuesday and I don't seem to be able to put two IF formulas within the same record. Only the Monday IF/FIND formula works and not the Tuesday. If I delete the Monday portion and leave the Tuesday, then the Tuesday portion works. That's what makes me think that you can only have a single IF formula (as well as nested IFs) and not more than one. I included screenshots and my formulas. If there's a better way of doing this I'm definitely open to that.
Formula in "Hours of Operation" field:
IF(
FIND("Monday",{Open Days},0)=1,"Monday "&{M-Start}&" - "&{M-End},
"Monday - Closed")&
"\n"&
IF(
FIND("Tuesday",{Open Days},0)=1,"Tuesday "&{T-Start}&" - "&{T-End},
"Tuesday - Closed")