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
Access2003: working with mouse wheel
How Can I Detect, Delete, and Add A Printer In Windows XP using Visual Basic, C#, or C++
Shutdown VM in ESXi 4.0 when connected to a smart ups 1000
Can Server 2008 R2 RDS Licensing Server be installed in an 2008 R2 Failover Cluster?
filtiring HTTPS Traffic in ISA Server 2006
Keeping Look Ups in a Make Tabel Query
using string inside a sql string with EXECUTE sp_executesql
Calander pop up control in tables
Remote printing under terminal services w/ HP PSC 1350
SRVANY where to download the most recent version?