Hi all,
I am working with the attached sheet trying to create a few flags to appear when certain information is present. The 3 flag columns are '2 Weeks - No Data', '2 Weeks - No Check Ins', '2 Weeks - No Paired Check Ins' and I have formulas within each reading the 'Check In Type' and 'Last Wk Check In' columns. Below are the formulas I am using for each column and what I am hoping to acheive.
Formula for '2 Weeks No Data': =IFERROR(IF([Check In Type]@row = <>"", 0, IF([Last Wk Check In]@row = <>"", 0, 1)), "") --> The goal is to have a flag appear when there is NO data in the Check In Type or Last Wk Check in column for a given row
Formula for '2 Weeks - No Check Ins': =IFERROR(IF([Check In Type]@row = "None", 0, IF([Last Wk Check In]@row = "None", 0, 1)), "") --> Goal is to have a flag up appear when "None" appears in both columns for a given row
Formula for '2 Weeks - No Paired Check Ins': =IFERROR(IF([Check In Type]@row = "Mentor", 0, IF([Last Wk Check In]@row = "Mentor", 0, 1)), "") --> Goal is to have a flag up appear when anything but "Mentor" appears in both columns for a given row (ex: None, Sub)
Thanks for the help and let me know if I can provide additional context!