Hi All,
I created a calculated column with multiple Nested IF statements which would list the appropriate graduation completion time % value based on the academic level and number of months leading to completion of each degree. However, there are a number of incorrect % values that are not corresponding to the appropriate academic level and completion months. For example, an Associates degree that is completed in 35 months would fall into the “150%” completion time category, but it’s showing as “Standard Time” instead. [Standard time for Associates is completion within 0 – 24 months.]
This is the formula that I have so far:
Associates Timeframe =
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] >= "0" && 'Completion Timeframe'[Time to Completion (Months)] <= "24", "Standard Time",
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] >= "25" && 'Completion Timeframe'[Time to Completion (Months)] <= "30", "125%",
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] >= "31" && 'Completion Timeframe'[Time to Completion (Months)] <= "36", "150%",
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] >= "37" && 'Completion Timeframe'[Time to Completion (Months)] <= "42", "175%",
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] >= "43" && 'Completion Timeframe'[Time to Completion (Months)] <= "48", "200%",
IF('Completion Timeframe'[Academic Level Ranking] = "1" && 'Completion Timeframe'[Time to Completion (Months)] > "48", "200% and greater", ""))))))
Please help. Thanks!
Mike