How do I display the max(A1:A4) value on to a different column (A6:A9)?

arthurz11

Board Regular
Joined
Nov 9, 2007
Messages
80
Office Version
  1. 2021
Platform
  1. Windows
SAMPLE:
The maximum value in column (A1:A4) is 700
A1 =100
A2 =700
A3 =100
A4 =100

I want to display the maximum value in a different column (A6:A9)

A6 =blank
A7 =700
A8 =blank
A9 =blank

How do I write the formula in cells A6 thru A9? Please help.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Perhaps try this in cells A6, and copy the formula down to A9:
Excel Formula:
=IF(MAX($A$1:$A$4)=A1,A1,"")
 
Upvote 0
Solution
If you are interested, with your Excel version, you could use this adaptation in A5 and you don't need to drag it down
Excel Formula:
=IF(MAX($A$1:$A$4)=A1:A4,A1:A4,"")
 
Upvote 0

Forum statistics

Threads
1,214,634
Messages
6,120,659
Members
448,975
Latest member
sweeberry

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