Microsoft
Software
Hardware
Network
Question : splitdata macro udf
Hi experts
have the following macro and formula in the relevant cell to split the data - just need a slight amendment so it INCLUDES the number values ALSO
at present only the letter values are shown in the cell (worksheet)
Function splitdata(rng As Range)
Dim k As Long
For k = 1 To Len(rng.Value)
If IsNumeric(Mid(rng.Value, k, 1)) = False And Mid(rng.Value, k, 1) <> "/" Then
splitdata = splitdata & Mid(rng.Value, k, 1)
Else
Exit Function
End If
Next k
End Function
Answer : splitdata macro udf
Ahh the formula will be...
=IF(ISNUMBER(FIND("/"
,A1)),LEFT
(A1,FIND("
/",A1)-1),
A1)
Saurabh
...
Random Solutions
NetworkStream.DataAvailabl<wbr />e returns false
How to configure FastCGI activity timeout for php-cgi.exe, Windows7, x64
How to resolve the SQL error: "ORDER BY items must appear in the select list if the statement contains a UNION, INTERSECT or EXCEPT operator"?
Displaying Icon over an Image
Using calendar in Access2007 application
VB.NET: get control by name and Reflection performance
Missing or broken reference msoutl.olb
Need help with combobox not selecting the correct record
Conditionally filter numbers based on digits beyond decimal point
Insert ArrayList into SQL Database