Inherited an excel file. Was pretty messed up and have fixed many of the data issues. The person who transferred the file to me is no longer here and the instructions (rules?) were as follows:
If are asked to:
[ul]
[li]add a row, highlight the range in yellow[/li]
[li]"delete" a row, highlight the range in red[/li]
[li]change a value, highlight the cell(s) in blue[/li]
[/ul]
On the last Monday of month, save and distribute the file
Reset for new month by removing all the coloring
Any new request that comes in will fall under the new month even though the actual date is still under the current month
I started thinking if I add some date cols, then I could use conditional formatting to handle the first two scenarios. It seemed to work well, then the issues came up, since the month of the file is generally one week before end of month, I can't enter today's date and have it highlight as a new record because April is not equal to May. Because of this, added an additional col called Submittal Month and then I put in a cell in B1 and entered the date representing the month so now can key off that to affect the conditional formatting rather than the actual month.
Remaining issues: (can they be achieved without turning this into vba or macro enable workbook)
1.
As part of the review process a copy of the file is sent to another team member who checks one of the date cols and if it needs to be updated, enters the date and colors the cell orange so that it is easily identified. Due to conditional formatting, that takes precedence and the orange color no longer is displayable. My thought was to either add yet another col (undesirable due to scrolling and an extra step on the user's part) or what I ended up doing is altering the conditional format formula to "skip" the col that the other person would be editing so that it can then be manually colored. Visually, this does not look nice, but if that is the only way without code or extra intervention, guess we can live with it.
2.
For conditional formatting on cells that have been edited, any thoughts?
For example:
Asked to please Change Row 367 from
[tt]Col Bescription Col CartNumber[/tt]
[pre]Paint Cyan 4454[/pre]
To
[tt]Col Bescription Col CartNumber[/tt]
[pre]Paint Blue 4455[/pre]
Once I have edited B367 and C367 then those two cells should be highlighted blue until we move on to the next month and reset. I imagine would have to add a col to identify the cells, but is beginning to sound vba-ish.
If are asked to:
[ul]
[li]add a row, highlight the range in yellow[/li]
[li]"delete" a row, highlight the range in red[/li]
[li]change a value, highlight the cell(s) in blue[/li]
[/ul]
On the last Monday of month, save and distribute the file
Reset for new month by removing all the coloring
Any new request that comes in will fall under the new month even though the actual date is still under the current month
I started thinking if I add some date cols, then I could use conditional formatting to handle the first two scenarios. It seemed to work well, then the issues came up, since the month of the file is generally one week before end of month, I can't enter today's date and have it highlight as a new record because April is not equal to May. Because of this, added an additional col called Submittal Month and then I put in a cell in B1 and entered the date representing the month so now can key off that to affect the conditional formatting rather than the actual month.
Remaining issues: (can they be achieved without turning this into vba or macro enable workbook)
1.
As part of the review process a copy of the file is sent to another team member who checks one of the date cols and if it needs to be updated, enters the date and colors the cell orange so that it is easily identified. Due to conditional formatting, that takes precedence and the orange color no longer is displayable. My thought was to either add yet another col (undesirable due to scrolling and an extra step on the user's part) or what I ended up doing is altering the conditional format formula to "skip" the col that the other person would be editing so that it can then be manually colored. Visually, this does not look nice, but if that is the only way without code or extra intervention, guess we can live with it.
2.
For conditional formatting on cells that have been edited, any thoughts?
For example:
Asked to please Change Row 367 from
[tt]Col Bescription Col CartNumber[/tt]
[pre]Paint Cyan 4454[/pre]
To
[tt]Col Bescription Col CartNumber[/tt]
[pre]Paint Blue 4455[/pre]
Once I have edited B367 and C367 then those two cells should be highlighted blue until we move on to the next month and reset. I imagine would have to add a col to identify the cells, but is beginning to sound vba-ish.