==IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], [logical_test3, value_if_true3],…)
=IFS(C5<60,"F",C5<70,"D",C5<80,"C",C5<90,"B",C5>=90,"A")
The IFSfunction is a useful tool for creating a logical test based on a set of conditions. In this example, the IFSfunction is used to return letter grades based on a score in cell C5. If the score in cell C5 is less than 60, the function returns an "F". If the score is between 60 and 70, it returns a "D", and so on.
=IFS(A1>=3,"Good",A1>=2,"Average",A1<2,"Poor")
The IFS function can also be used to return ratings based on a score. In this example, the IFS function is used to return ratings for a score in cell A1. If the score in cell A1 is greater than or equal to 3, the function returns "Good". If the score is between 2 and 3, it returns "Average", and if it is less than 2, it returns "Poor".
The IFS function is a powerful tool for evaluating conditions in Sourcetable. It can be used to test up to 127 different conditions, making it a great alternative to using multiple IF statements.