I have cells that contain comma separated number values. I need to extract the MIN and MAX numbers from each cell.
How can this be done?
I found this formula:
But it only gives me the MAX, not MIN.
I saw some VBA solutions but could not get them to work.
How can this be done?
I found this formula:
Code:
=MATCH(10,INDEX(FIND(","&ROW(INDIRECT("1:99999"))&",",","&AH13&","),0))
But it only gives me the MAX, not MIN.
I saw some VBA solutions but could not get them to work.