View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Brian Herbert Withun Brian Herbert Withun is offline
external usenet poster
 
Posts: 14
Default Spilt data into two columns

On Nov 5, 9:31 am, Alam wrote:
Function GetOt(rng As Variant, Noh As Variant, Amount As Variant) As Variant
If rng Like "HRS" Then
GetOt = (Noh) & "-" & (Amount)
Else
GetOt = ""
End If
End Function

The result is:
DESC NOD/NOH AMOUNT RESULT
DYS 31.00 550.00
HRS 60.00 150.75 60-150.75
DYS 10.00 460.30
DYS 10.00 115.10
DYS 31.00 450.00
HRS 60.00 123.00 60-123
DYS 31.00 450.00
HRS 80.00 164.00 80-164
HRS 9.00 22.14 9-22.14
DYS 31.00 950.00
HRS 105.00 455.44 105-455.44
HRS 23.00 119.72 23-119.72
DYS 31.00 1,000.00
HRS 89.00 406.06 89-406.06
HRS 23.00 125.92 23-125.92
This the is the result of my macro, but instead to segregate my result by(
Data -text to column,) I want spilt this result into two columns directly by
macro. Please I f any one can help.
Thanks


Can you better describe your problem? I do not know what you are
trying to do with this function.

Brian Herbert Withun