Please, I need help with copying a row from one worksheet to another based on the color filling of a cell on the row, and ensuring that subsequent copying of rows will not duplicate rows that have been previously copied.
I’ll try and explain the problem that I have:
1. I have used Excel conditional formatting feature to assign three different colour fills to cells in a particular column based on the figure that appears in each of the cells in that column. If any cell in that column does not meet any one of the three criteria, the cell will not be filled with a colour. It will be left blank. This bit works OK.
2. Given that there are three different colours, I created a sheet for each of the three colours, e.g. Red, Green, Yellow. I also created another sheet named ‘All Colours’.
3.So in effect, I have 5 worksheets – Main Data, Red, Green, Yellow, All Colours.
4.When for a cell meets the criterion for e.g. a Green colour, and the cell is filled with Green, then all the data on that row must be copied to the first available empty row in the ‘Green Worksheet. The same row is also copied to the first available row in the ‘All Colour’ worksheet.
5.Same for Red and Yellow.
6.So for each cell that meets the colour criterion, the entire row will be copied to the next blank row of both the relevant colour worksheet and also to the ‘All Colour’ worksheet. (two copying will be triggered for each colour criterion that is met.
7.The code that I have tried to put together (see below) does OK with the initial copying from the Main Data – copying to both the particular colour worksheet and the ‘All Colour’ worksheet, respectively.
8.I need to add that when I tested the code in a sample workbook, I used three texts to represent each of the colours, and used those as ‘Range Values’ in the vba code as follows: “YES” for Yellow, “NO” for Green, and “DU” for Red (see the vba code below). I used these to represent each colour because I do not know how to add the colour codes as the Range Values in the vba code.
9.I know that the colour codes for the three colours are – Yellow is RG(255, 255, 0); Green = RGB(0, 176, 80), and Red = RGB(255, 0, 0). I would need help also to adjust Range Values with the above correct colour codes, please.
10.Another major difficulty that I have is that, in the course of testing the vba code, I observed that when a user adds to the Main Data sheet additional rows that contain cells which meet the criteria, and the copy vba code is triggered, it will copy across the new rows and also the other rows that had been previously copied across – in effect, duplicating previously-copied rows each time the code is triggered.
Please, I need help with adjustment to the code, to ensure that after the initial copying is triggered, then subsequent copying will not copy across, again, the rows in the Main Data sheet that had been previously copied .![]()
Please Login or Register to view this content.
What I need is that upon each trigger of the code, the rows to be copied across to the next blank row of either ‘Red sheet’, ‘Green sheet’, ‘Yellow Sheet’ AND ‘All Colour sheet’ should only be those rows with new cells that have met the colour criteria.
Thanks all in anticipation of your kind help.
Buddy8
Bookmarks