Excel Formula || How to count occurrences of a value in column

后端 未结 1 1300
别跟我提以往
别跟我提以往 2021-01-22 08:49

Need some help in figuring out an formula to count the number of times a value is listed in a column. I will try and explain the requirement below.

The below image show

相关标签:
1条回答
  • 2021-01-22 09:00

    It just need an extra sheet/table to execute..

    try :

    A1 = a,b,c
    A2 = b,c
    A3 = c,b,a
    A4 = c,a
    A5 = b
    B1 = ss
    B2 = ss
    B3 = dd
    B4 = dd
    B5 = ss
    D1 = a
    E1 = b
    F1 = c
    C7 = ss
    C8 = dd
    
    D2 =IF(FIND(D$1,$A2,1)>0,1,"") drag until F6
    
    D7 =COUNTIFS($B$2:$B$6,$C7,D$2:D$6,1) drag until F8
    

    D7:F8 will be your desired results. Happy trying.

    0 讨论(0)
提交回复
热议问题