i have a tables...
A B C
1 Employee Id Penalty Counter
2 TA329 A 1
3 TA329 A 2
4 TA329 A 3
How to formulate in cell C, to count how many penalty A in same Employee ID... like in c2 is 1, c3 is second time A so 2, and so on....
i use this formula in:
c2 =COUNTIFS($A$2:A2,[@employee Id],$B$2:B2,[@penalty])
c3=COUNTIFS($A$2:A3,[@employee Id],$B$2:B3,[@penalty])
c4=COUNTIFS($A$2:A4,[@employee Id],$B$2:B4,[@penalty])
but my problem is, when i add new row:
my c4 formula change automatic into this
c4==COUNTIFS($A$2:A5,[@employee id],$B$2:B5,[@penalty])
and
c5=COUNTIFS($A$2:A5,[@employee id],$B$2:B5,[@penalty]) ...
when i add new row again, it will be like this
c4=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])
c5=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])
c6=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])..
and so on... any ideas why? thanks
A B C
1 Employee Id Penalty Counter
2 TA329 A 1
3 TA329 A 2
4 TA329 A 3
How to formulate in cell C, to count how many penalty A in same Employee ID... like in c2 is 1, c3 is second time A so 2, and so on....
i use this formula in:
c2 =COUNTIFS($A$2:A2,[@employee Id],$B$2:B2,[@penalty])
c3=COUNTIFS($A$2:A3,[@employee Id],$B$2:B3,[@penalty])
c4=COUNTIFS($A$2:A4,[@employee Id],$B$2:B4,[@penalty])
but my problem is, when i add new row:
my c4 formula change automatic into this
c4==COUNTIFS($A$2:A5,[@employee id],$B$2:B5,[@penalty])
and
c5=COUNTIFS($A$2:A5,[@employee id],$B$2:B5,[@penalty]) ...
when i add new row again, it will be like this
c4=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])
c5=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])
c6=COUNTIFS($A$2:A6,[@employee id],$B$2:B6,[@penalty])..
and so on... any ideas why? thanks