1
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?

More than 3 years have passed since last update.

【Excel】カウント

Posted at

#頭3桁シート作成
A列→記入
B列→記入
C列→ =COUNTIF(頭5桁分類!$D$3:$D$100,頭3桁分類!A2)
D列→ =COUNTIF(全体シート!$B$2:$B$229,頭3桁分類!A2)
E列→ =AVERAGEIF(全体シート!$B$2:$B$229,頭3桁分類!A2,全体シート!$CF$2:$CF$229)

#頭5桁シート
B列→記入
C列→記入
D列→ =LEFT(B3,3)
E列→ =VLOOKUP(LEFT(B3,3),頭3桁分類!$A$2:$B$100,2)
F列→ =COUNTIF(全体シート!$D$2:$D$229,B3)
G列→ =AVERAGEIF(全体シート!$D$2:$D$229,頭5桁分類!B3,全体シート!$CF$2:$CF$229)
H列→ =COUNTIFS(全体シート!$D$2:$D$229,頭5桁分類!$B3,需要表!$E$2:$E$229,頭5桁分類!H$2)
I列→ =IFERROR(AVERAGEIFS(全体シート!$CF$2:$CF$229,全体シート!$D$2:$D$229,頭5桁分類!$B3,全体シート!$E$2:$E$229,頭5桁分類!H$2),0)
J~U列→ コピー

#全体シート

B列→ =LEFT(G2,3)
C列→ =VLOOKUP(B2,頭3桁分類!$A$1:$B$26,2,FALSE)
D列→ =LEFT(G2,5)
E列→ =MID(G2,6,3)
F列→ =MID(G2,9,5)

1
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
1
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?