View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ward376 ward376 is offline
external usenet poster
 
Posts: 360
Default Call Center Talk Times

I just converted them to values...

Sub way()
With Sheet1.Columns("ab")
.Value = .Value
End With
End Sub

Which worked fortunately - I've seen lots of imports that require more
finagling to get time values that you can work with in xl.

Cliff Edwards