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
BSOD 0X40000080
Access WizHook Object Library
cannot access win xp system in workgroup
Get autonumber ( unique ID ) of newly inserted record, then insert value into a relating table, ms access 2003
_ReportOutput
Getting item from DataTable based on column index
EDB file growing like crazy HELP!!!!!
Script through SCCM will not copy files.
In-place upgrade of Hyper-V Server 2k8 R2 to Full Server 2k8 w/Hyper-v role
Auto Fill based on 2nd Column