Hello,
I'd like to find the min & max value of a cell where values are separated by dash, for example, 1-2-5-6-7-19-0. I tried using the LEN function but haven't managed to get the correct result.
Thank you, Sans
Hello,
I'd like to find the min & max value of a cell where values are separated by dash, for example, 1-2-5-6-7-19-0. I tried using the LEN function but haven't managed to get the correct result.
Thank you, Sans
How about this little user-defined function:
Then, with your data in cell A1:![]()
Function SplitString(sTargetString As String, sOperation As String, Optional sDelimiter = "-") As Variant Dim sSplit As String sSplit = "{" & Replace(sTargetString, sDelimiter, ";") & "}" SplitString = Evaluate("=" & sOperation & "(" & sSplit & ")") If IsError(SplitString) Then SplitString = "#VALUE" End If End Function
=SplitString(A1,"MAX")
or
=SplitString(A1,"MIN")
Excellent, Andrew! Thank you very much, it worked great! This way I can get min and max values between many cells easily as well, i.e. =SplitString(A1&C1&H1,"MAX")
Many thanks, Sans
Just for fun, select from the drop-down in this workbook, no VBa.
Add to the strings as required, the column can be any length.
If you need any more information, please feel free to ask.
However,If this takes care of your needs, please select Thread Tools from menu above and set this topic to SOLVED. It helps everybody! ....
Also
اس کی مدد کرتا ہے اگر
شکریہ کہنے کے لئے سٹار کلک کریں
If you are satisfied by any members response to your problem please consider using the small Star icon bottom left of their post to show your appreciation.
Thanks Marcol!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks