Macro on replacing 00/01/1900 00:00 to blank

Bryan123

New Member
Joined
May 23, 2019
Messages
41
Hi,

Please assist me. I'm tryig to create a macro replacing 00/01/1900 to blank. I have used control H to replace the date but it's not working.
Please advise.


Sub Macro5()
'
' Macro5 Macro
'
'
Sheets("QA Coaching Data").Select
Range("J2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Replace What:="00/01/1900 00:00:00", Replacement:="", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
ActiveWindow.SmallScroll ToRight:=7
Range("T2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Replace What:="00/01/1900 00:00:00", Replacement:="", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
ActiveWindow.ScrollColumn = 1
Range("B2").Select
End Sub







Thank you
Bryan
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Format all the cells back to general then replace 0 then format them back.
 
Upvote 0
Maybe like this:

Code:
With Sheets("QA Coaching Data")
    lr = Application.Max(.Range("J" & .Rows.Count).End(xlUp).Row, .Range("T" & .Rows.Count).End(xlUp).Row)
    With Union(.Range("J2:J" & lr), .Range("T2:T" & lr))
        .NumberFormat = General
        .Replace What:="0", Replacement:="", LookAt:=xlWhole
        .NumberFormat = "dd/mm/yyyy hh:mm"
    End With
End With
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,004
Members
449,203
Latest member
Daymo66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top