Linked deletion or linked formatting?

mrckson

New Member
Joined
Nov 29, 2017
Messages
3
I have a workbook with a data entry sheet, and then three other sheets displaying certain weekly statistics linked to the data entry sheet. There are times, though, when I need to delete a week's data, but that leaves me with a column of #REF , and it screws up the conditional formatting I've put in place. Is there some way to set it up so that I can delete a range of data from the entry sheet, and have the cells on the display sheet be automatically deleted as well, while having the conditional formatting be preserved? Or would it be possible to have the linked cells copy the formatting as well as the displayed value?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
how about making your formulas display something else if #REF happens, like a zero?
Code:
iferror(the formula,0)
that way if you delete things it doesn't return #REF
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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