Countif every second row between Rows B and AP Excel 2010

harleysrun

New Member
Joined
Sep 15, 2015
Messages
2
Goodmorning, PLEASE HELP
I need to count every second row ie 48,50,52,54 etc between columm B and AP, values above 1300. Placing the absolute $ only in front of B and AP does not work. Can anyone help?
=COUNTIF($B48:$AP48,">1300")
TIA
Dan
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
=IF(MOD(ROW(),2)=1,"",COUNTIF($B48:$AP48,">1300"))
Put in each row.
(e.g column A)
A48 =result
A49=""(Blank)

OR, total
=SUMPRODUCT(($B$48:$AP$100>=1000)*(MOD(ROW($B$48:$AP$100),2)=0))

Hope this helps.
 
Upvote 0
Thanks for your reply, is there any way in my function:
=COUNTIF($B48:$AP48,">1300")
I can get columns B - AP to be absolute $
And the row 48 to move 2 rows at a time when copied as in:
=COUNTIF($B48:$AP48,">1300")
=COUNTIF($B50:$AP50,">1300")
=COUNTIF($B52:$AP52,">1300")

Cheers


 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,933
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top