S sambit Member Sep 7, 2018 #1 Sir, Please help to resolve the issue. If row data is same, then sl no should be continue (1,2,3......). Otherwise it must be one. Please find example file. Attachments Example.xlsx 9.9 KB · Views: 7
Sir, Please help to resolve the issue. If row data is same, then sl no should be continue (1,2,3......). Otherwise it must be one. Please find example file.
Hui Excel Ninja Staff member Sep 7, 2018 #2 add a Helper Column G5: =D5&E5&F5 Copy that down H5: =COUNTIF($G$5:G5,G5) Copy H5 down Enjoy
GraH - Guido Well-Known Member Sep 7, 2018 #3 Perhaps this little improvement in the helper column of Hui's solution is required to avoid potential issues when data is like C - 45 - 750. It will count as 3 while it is different from C - 457 - 50. G5: =D5&"-"&E5&"-"&F5
Perhaps this little improvement in the helper column of Hui's solution is required to avoid potential issues when data is like C - 45 - 750. It will count as 3 while it is different from C - 457 - 50. G5: =D5&"-"&E5&"-"&F5
B bosco_yip Excel Ninja Sep 9, 2018 #5 Or use this without helper In H5, copied down : =COUNTIFS(D$5:D5,D$5:D5,E$5:E5,E$5:E5,F$5:F5,F$5:F5) Regards Bosco
Or use this without helper In H5, copied down : =COUNTIFS(D$5:D5,D$5:D5,E$5:E5,E$5:E5,F$5:F5,F$5:F5) Regards Bosco
S sambit Member Sep 10, 2018 #6 Bosco_yip Sir, Excellent. can you explain the logic behind the formula?
GraH - Guido Well-Known Member Sep 10, 2018 #7 bosco_yip said: Or use this without helper In H5, copied down : =COUNTIFS(D$5:D5,D$5:D5,E$5:E5,E$5:E5,F$5:F5,F$5:F5) Regards Bosco Click to expand... Oh my, indeed!!!!
bosco_yip said: Or use this without helper In H5, copied down : =COUNTIFS(D$5:D5,D$5:D5,E$5:E5,E$5:E5,F$5:F5,F$5:F5) Regards Bosco Click to expand... Oh my, indeed!!!!
B bosco_yip Excel Ninja Sep 10, 2018 #8 sambit said: Bosco_yip Sir, Excellent. can you explain the logic behind the formula? Click to expand... The multi-criteria Countifs formula logic is equal to Hui's helper solution in Post #.2 Regards Bosco
sambit said: Bosco_yip Sir, Excellent. can you explain the logic behind the formula? Click to expand... The multi-criteria Countifs formula logic is equal to Hui's helper solution in Post #.2 Regards Bosco