Find Highest Value of a Row and make it a 1 If less than highest leave blank.

Ailg

New Member
Joined
Sep 2, 2024
Messages
5
Office Version
  1. 365
  2. Prefer Not To Say
Platform
  1. Windows
Good day, i am attempting to find the highest value from row V12 to V46 and make a 1 in the points field that coincides with the highest number. In the example V21 is the highest and i would like to populate a 1 in the X21 field. If it is not the highest value i would like it to be blank. Thank you.
 

Attachments

  • 2024-09-02_08h10_34.png
    2024-09-02_08h10_34.png
    65.2 KB · Views: 7

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
Thank you. Updated.
 
Upvote 0
Thanks for that. (y)
how about in X12 only
Excel Formula:
=IF(MAX(V12:V46)=V12:V46,1,"")
 
Upvote 0
Thanks for that. (y)
how about in X12 only
Excel Formula:
=IF(MAX(V12:V46)=V12:V46,1,"")
That worked great, however there are several blank cells that now have a 1.
 
Upvote 0
Do you mean in col X?
If so check what is in col V
 
Upvote 0
Do you mean in col X?
2024-09-02_13h54_26.png

If so check what is in col V
In row V, every 3rd line has no data is there a formula that would only indicate a 1 for the highest value in Row V?
 
Upvote 0
How about
Excel Formula:
=IF((MAX(V12:V46)=V12:V46)*(V12:V46<>""),1,"")
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,221,497
Messages
6,160,151
Members
451,625
Latest member
sukhman

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