MAX and MIN value of a column

graham fraser

New Member
Joined
Mar 31, 2023
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi Mr Excell users

Looking for help to solve a problem
I have 2 columns , one which has mixed data
89045; 8
that i first separate into the second column using "=RIGHT(A1,LEN(A1)-SEARCH(";",A1))"
8
I then need to have a third cell only that i am trying to show MAX value from the data in the second column made up from numbers ranging from 0-400
If i use the =MAX(B1:B15) then return is always 0,

89045; 88
95919; 88MAX
0​
96326; 88MIN
0​
90719; 88
89087; 88
00642; 88
08981; 99
07031; 99
01333; 88
01537; 88
10211; 99
17457; 99
16945; 99
11979; 99
07827; 99



any help much appreciated
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
How about:
Book1
ABCD
189045; 8
295919; 8MAX9
396326; 8MIN8
490719; 8
589087; 8
600642; 8
708981; 9
807031; 9
901333; 8
1001537; 8
1110211; 9
1217457; 9
1316945; 9
1411979; 9
1507827; 9
Sheet1
Cell Formulas
RangeFormula
D2D2=LET(r,--TEXTAFTER(A1:A15,"; "),MAX(r))
D3D3=LET(r,--TEXTAFTER(A1:A15,"; "),MIN(r))
 
Upvote 0
Solution
Think the problem is that the second column is text. Need to format the column to number (right click- format, number)
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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