If condition...

ap1

New Member
Joined
Mar 11, 2002
Messages
26
I want to blank out contents of column if the date is 9999-12-31 and i want to keep other dates intact. Could some one help me with this please?
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Simply use a Find and Replace (Edit - Replace) for the date mentioned, keeping the "replace with" field empty. In the "find what" field, you should type the date exactly as it appears in the formula bar.

Marc
 
Upvote 0
but i am doing this within a macro. is there a simpler way to do it by selecting the whole column
 
Upvote 0
You can do the same from a macro:

MyColumn.Replace What:="12-31-9999", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False

where MyColumn is the range you want to scan.

Marc
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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