ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete ' from date (https://www.excelbanter.com/excel-programming/440470-delete-date.html)

LiAD

Delete ' from date
 
Hi,

i have 10523 lines with dates in col D, with dates written as '27/10:09 etc.
What code could i use to find all the ' and delete them?

Thanks

Gary''s Student

Delete ' from date
 
Sub tickiller()
Dim r As Range, rr As Range
Set r = Intersect(Range("D:D"), ActiveSheet.UsedRange)
For Each rr In r
If rr.PrefixCharacter = "'" Then
rr.Value = rr.Value
End If
Next
End Sub

--
Gary''s Student - gsnu201001


"LiAD" wrote:

Hi,

i have 10523 lines with dates in col D, with dates written as '27/10:09 etc.
What code could i use to find all the ' and delete them?

Thanks


Rick Rothstein

Delete ' from date
 
Or, alternately, simply select Column D and run this single line of code
from the Immediate Window...

Selection.Value = Selection.Value

--
Rick (MVP - Excel)


"Gary''s Student" wrote in message
...
Sub tickiller()
Dim r As Range, rr As Range
Set r = Intersect(Range("D:D"), ActiveSheet.UsedRange)
For Each rr In r
If rr.PrefixCharacter = "'" Then
rr.Value = rr.Value
End If
Next
End Sub

--
Gary''s Student - gsnu201001


"LiAD" wrote:

Hi,

i have 10523 lines with dates in col D, with dates written as '27/10:09
etc.
What code could i use to find all the ' and delete them?

Thanks



Rick Rothstein

Delete ' from date
 
Sorry (for my other reply), I see the OP wanted VB code; your macro could be
reduced to this...

Sub tickiller()
Columns("D").Value = Columns("D").Value
End Sub

--
Rick (MVP - Excel)


"Gary''s Student" wrote in message
...
Sub tickiller()
Dim r As Range, rr As Range
Set r = Intersect(Range("D:D"), ActiveSheet.UsedRange)
For Each rr In r
If rr.PrefixCharacter = "'" Then
rr.Value = rr.Value
End If
Next
End Sub

--
Gary''s Student - gsnu201001


"LiAD" wrote:

Hi,

i have 10523 lines with dates in col D, with dates written as '27/10:09
etc.
What code could i use to find all the ' and delete them?

Thanks




All times are GMT +1. The time now is 10:35 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com