시작하기무료로 시작하기

Lots of IFS

If you have more than two categories to generate from your logical conditions, IF() becomes unwieldy. It is possible to generate as many categories as you like by nesting IF() inside other calls to IF(), but the code quickly becomes difficult to understand. Instead, Google Sheets provides a function called IFS() that lets you test for as many conditions as you like. It takes pairs of arguments as follows:

=IFS(condition1, "value if condition 1 is TRUE", 
     condition2, "value if condition 2 is TRUE", ...)

이 연습은 강의의 일부입니다

Google Sheets 중급

강의 보기

연습 안내

In column H, pass six arguments to IFS() to calculate the status of kids in each row. If the woman

  • has young kids, return "young".
  • has no kids, return "none".
  • has kids and does not have young kids, return "old".

실습형 인터랙티브 연습문제

이론을 실습으로 바꾸는 인터랙티브 연습 중 하나를 만나보세요

연습 시작