Is it possible to combine the following IF formulas into one big one. These will all be from a table on the same row attempting to fill out my "Flex" column.
The rules I want to capture are:
1)if Type = Flex, then Flex = -7
2) if Type = regular and Date = Mon-Thurs, then Flex = 0.5
3) if Type = regular and Date = Fri-Sun, then Flex = 0/blank
I've already managed to combine differentiate between having -7 and 0.5 based on the type selected, but I'm not sure how to get the date one in the mix.
This is my formula for the two variables above:
=IF(INDEX(Hours_Worked.TypeDay, ROW())=Flex, "-7", IF(INDEX(Hours_Worked.TypeDay, ROW())=Regular, "0.5", "0"))