0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Excel関数をシンプルにする 

Posted at

Sheet1のc26のExcel関数

IF(AND(OR(A1="FT", A1="SIT", A1="LOCAL"), OR(A2="T02", A2="T03", A2="T07")),
    IFERROR(
        VLOOKUP(
            A5,
            list!$B$13:$L$998,
            CHOOSE(
                MATCH(A2, {"T02","T03","T07"}, 0),
                IF(A1="FT",2,IF(A1="SIT",5,8)),
                IF(A1="FT",3,IF(A1="SIT",6,9)),
                IF(A1="FT",4,IF(A1="SIT",7,10))
            ),
            FALSE
        ),
        "未設定"
    ),
"未設定")


Sheet1

image.png

list

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?