View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default Help with removing Time from Date

Hi Mark,

Am Thu, 5 Oct 2017 05:20:22 -0700 (PDT) schrieb Living the Dream:

I have a sheet that get populated via data off a clipboard( exported from Sapphire DB.

Does anyone have a handy snippet that will look at the range and detect what it is then do stuff:


did you try Data = Text to column = Delimited = Delimter is comma
In step 3 choose for second column "Do not import column"

If that doesn't work try:

Sub DateTime()
Dim rngC As Range
For Each rngC In Range("A2:A100")
rngC = Int(rngC)
Next
Range("A2:A100").NumberFormat = "dd/MM/yy"
End Sub

If that also doesn't work provide a workbook with the data in column A
that we can look for the format and how to solve the problem.


Regards
Claus B.
--
Windows10
Office 2016