I have so many columns! Is there a way to merge some of these formulas and get what I'm looking for in one or two columns?
I want the system to look at the hours identified in the Week 1: Oct 1-7, 2023 column and then tell me if the reviewer is at capacity (with a symbol) based on the assignments assigned in another sheet.
Thanks!!
Week 1 Availability Formula: =IF([Week 1: Oct 1-7, 2023]@row = "0 Hours/Week", 0, IF([Week 1: Oct 1-7, 2023]@row = "5 Hours/Week", 1, IF([Week 1: Oct 1-7, 2023]@row = "10 Hours/Week", 2, IF([Week 1: Oct 1-7, 2023]@row = "15 Hours/Week", 3, IF([Week 1: Oct 1-7, 2023]@row = "20 Hours/Week", 4)))))
Week 1 Assignments Formula: =COUNTIF({ID}, ID@row)
Week 1 Capacity Formula: =SUM([Week 1 Availability]@row - [Week 1 Assignments]@row)
Symbol: =IF([Week 1 Capacity]@row = "0", "Empty", IF([Week 1 Capacity]@row = "1", "Quarter", IF([Week 1 Capacity]@row = "2", "Half", IF([Week 1 Capacity]@row = "3", "Three Quarter", IF([Week 1 Capacity]@row = "4", "Full")))))