Clear a single cell's format & Contents from a row that was copied from another sheet?

CastingDirector

New Member
Joined
Jun 10, 2014
Messages
46
Thanks to this forum, I am getting closer and yet...
My VBA now copies an entire row with contents from sheet 1 to sheet 2 when a dropdown is clicked in sheet 1 (called "Green Master"). My "non avail" (sheet 2) has a double click calendar with which I want to insert a date into cells in column "B".
Problem: The cell in "B" whose entirerow was copied now contains the Time format (from sheet 1) which prevents me from inserting the date via my calender module. Conditional formats of column B on sheet 2 does not work as the next time a new row is added that formatting copied over. Question: How can I remove the Time formatting in column "B" when it is moved from sheet 1 so I can input the calendar date?
I have no hair left. It (the hair) is on my desk yet the code remains.
Thoughts? Help?
Sheet 1 code snippet below:

ElseIf Intersect(Target, Range("A:A")) = "Calendar Conflict" Then
Target.EntireRow.Copy Sheets("Non Avail").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN

Forum statistics

Threads
1,214,907
Messages
6,122,181
Members
449,071
Latest member
cdnMech

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