B bines53 Active Member Jan 21, 2015 #1 Hello everyone ! This function =SUM(--(MMULT(--(A1:F11=3),{1;1;1;1;1;1})>0)) Gives a result, there are a number of lines in the 3, at least once. I want a similar function, check, every second row, in range. The desired outcome is 4. Thank you! Attachments test.11.xlsx test.11.xlsx 8.1 KB · Views: 9
Hello everyone ! This function =SUM(--(MMULT(--(A1:F11=3),{1;1;1;1;1;1})>0)) Gives a result, there are a number of lines in the 3, at least once. I want a similar function, check, every second row, in range. The desired outcome is 4. Thank you!
John Jairo V Well-Known Member Jan 21, 2015 #2 Hi @bines53. Try this formula: =SUM(--(MMULT((A1:F12=3)*ISEVEN(ROW(A1:F12)),{1;1;1;1;1;1})>0)) Blessings!
Hi @bines53. Try this formula: =SUM(--(MMULT((A1:F12=3)*ISEVEN(ROW(A1:F12)),{1;1;1;1;1;1})>0)) Blessings!
B bines53 Active Member Jan 22, 2015 #3 Hi John, Excellent ! How to do it when,every Third row ? Thank you!
Somendra Misra Excel Ninja Jan 22, 2015 #4 Hi David, Modifying @John Jairo V formula can you try this one: =SUM(MMULT((A1:F12=3)*(MOD(ROW(A1:F12),3)=0),{1;1;1;1;1;1})) Regards,
Hi David, Modifying @John Jairo V formula can you try this one: =SUM(MMULT((A1:F12=3)*(MOD(ROW(A1:F12),3)=0),{1;1;1;1;1;1})) Regards,