正しいテキスト Case 関数と If 関数の違いについて説明してください。 回答: Case 指定された式を一連の値と照合します。式が値と等しい場合は、対応する結果を返します。どの値とも等しくない場合は、else _result IF を返します。式が true か false かを判断します。trueの場合は指定された値を返し、falseの場合は別の値を返します。
正解:
Case Checks a given expression against a series of values. If the expression is equal to a value, returns the corresponding result. If it is not equal to any values, it returns the else _result IF Determines if expressions are true or false. Returns a given value if true and another value if false