Max of every nth row and column

niteondarun

New Member
Joined
Aug 25, 2023
Messages
2
Office Version
  1. 2016
Platform
  1. Windows
I am looking to find the max from numbers in every 9th row and every other column in 2016. The tedious way works but hoping for a replacement for this formula:

=MAX(AZ4,BB4,BD4,BF4,AZ13,BB13,BD13,BF13,AZ22,BB22,BD22,BF22,…,AZ994,BB994,BD994,BF994)

1692984169396.png
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
I hope this can help in 2016:

Excel Formula:
=MAX(IF((ISEVEN(COLUMN(AZ4:BF994)))*(MOD(ROW(AZ4:BF994)-4,9)=0),AZ4:BF994,""))
 
Upvote 0
This works Great! Thank you very much! I was able to follow your formula and extend it to capture similar data for all 9 rows by increasing the remainder for each row by 1 from 0 to 8. I was also able to capture the odd rows by using ISODD instead. I compared all of the numbers on a small sample of data and it works great!

Thanks again!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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