Hi,  I´m using the code below. Cells(i,6) has hour data, 09:06 for
example. I need to transfer this value to another cell , but between
"09:06".
The code below result in:
hour="0,404861111111111"
however i want
hour="09:06"

Coud anyone help me with this simple problem?

Best regards

Sub xml()
Set r = Range("A1:J60")
For i = 5 To 60
    If r.Cells(i, 1) <> "" Then
    Cells(i, 15).Value =  "hour=" & """" & Cells(i,6 )&""""
    End If
Next i

End Sub

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to