+ Reply to Thread
Results 1 to 28 of 28

Copy a row from one worksheet to another based on color filling of a cell in the row

  1. #1
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Copy a row from one worksheet to another based on color filling of a cell in the row

    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 Login or Register  to view this content.
    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 .

    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

  2. #2
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Wow, after all that, what can I say? I'll see what I can do tomorrow
    If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)

    You can't do one thing. XLAdept

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin

  3. #3
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Thanks Xladept for your kind response. I am sorry that the thread is long. It was all aimed at explaining things fully so I can get the help that I need.

    The summary is that there are two things that I need help with regarding the vba code that I provided:

    1. The code is supposed to copy across rows that have either Red, Green or Yellow colour fills in their cells in column E. I need help with replacing each of the following 3 lines in the code:

    Please Login or Register  to view this content.
    For e.g.,
    replace the 'YES' in (a) with the colour code for Yellow which is RGB (255, 255, 0)

    replace the 'NO' in (b) with the colour code for Green which is RGB(0, 176, 80), and

    replace the 'DU' in (c) with the colour code for Red which is RGB(255, 0, 0).

    2. Finally, after the initial copying across, when a user creates a new row and makes additional entry in the Main Data sheet, and that entry meets the colour fill criteria, the code should copy across ONLY that row. It should be prevented from copying across the rows that have been previously copied across.

    I hope that this summary is helpful.

    Thank you.

    Buddy8

  4. #4
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    The PM I sent before was a mistake (I pressed the wrong button, and it sent your original message to me back to you as a response).

    The code is supposed to copy across rows that have either Red, Green or Yellow colour fills in their cells in column E. I need help with replacing each of the following 3 lines in the code...
    The Red, Green, Yellow are probably produced by CONDITIONAL FORMATTING. Unfortunately, VBA CAN NOT identifiy CONDITIONAL FORMATTING colours. In order for VBA to identify which item is supposed to be Red, Green, or Yellow, VBA will have to use the CONDITIONAL FORMATTING rules that produced the colours.

    --------------------
    If you were able to use the Colours, the syntax would be:
    Please Login or Register  to view this content.
    Since we don't know the Conditional Formatting rules, you will have to upload a sample workbook that contains the Conditional Formatting to obtain additional help.

    Lewis

  5. #5
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Dear Lewis

    Thanks too for your kind response. I have inserted the ‘If Range ..” line you suggested, with the appropriate colour numbers, but I could not get the vba code to work.

    As you suggested, I have attached a sample dummy workbook with the Main Data, Green, Yellow, Red and Summary worksheets, respectively.

    It also contains the vba code which I have put together.

    In the Main Data sheet, I have used Excel conditional formatting to insert the the colour fills in column E. If you make an entry into any of the rows (columns A to C) and add a number into the D column, the appropriate colour fill will appear in the E column as follows:
    1 to 11 = Red
    13 to 29 = Yellow
    30 to 41 = Green

    1.I’d like the vba code to look at column E and copy the row for each coloured cell to the first available blank row in the appropriate colour worksheet.

    2.Each of such row should be copied both to the appropriate colour worksheet and also to the Summary sheet (as the vba code attached to the workbook shows)

    3.The vba code should please be tweaked to effect the copying of the existing rows with coloured cells i.e. (rows 2 to 12).

    4.I also need help to prevent the duplication of previously copied rows when subsequent entries are made in the Main Data sheet.

    5.For example, after the code has acted on rows 2 to 12 , if you put in a dummy entry in row 13 (columns A to C) and add say the number ‘20’ in column D – the Yellow colour will appear in E column. Do same for Row 14 and add say the number ‘13’ to its column D – the Green colour will appear in E column.

    6.At this stage, when the code is triggered, only Rows 13 and 14 should be copied to the first available blank rows in both their appropriate colour sheets and the Summary sheet.

    I'll be very grateful for any help.

    Thanks all.

    Buddy8
    Attached Files Attached Files

  6. #6
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    Try this:

    Please Login or Register  to view this content.

  7. #7
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    Thanks very much for your code and for the time you’ve put in to do this for me. I am grateful.

    I tried your code. It is almost there. There are two issues that we should, please, correct and the code will work perfectly OK the way that I want.

    1. I observe that if a number appears more than once in column D, and even though the row contains different Data or Records, the rows will not copy across. I labelled column D with the title ‘ID’ which appears to make the contents unique. I know that in a normal circumstance ‘ID’ should be unique and cannot be duplicated. I think I used the wrong title for the column, hence the implication of the contents. This should not be the case. May be I should change the title of that column to ‘RESULT’..

    2. What it means is that a number for e.g. 15, can appear many times in column D with the resulting colour being ‘Yellow’, the entire row should be copied across to both its relevant colour sheet & also to the Summary Sheet.

    3. I have attached another file which shows this. If you look at the Main Data sheet of this new file attached, to test it, I have added data in rows 13 to 17.

    4) Row 13 column D contains the number 15 giving rise to Yellow. This row was not copied across because the code appears to regard the ‘15’ row 13 as a duplicate of the ‘15’ in row 7, even though the rows contain different data/record. The same with Row 17 and Row 4. They both have the number ‘31’ in column D.. Even though they both accurately show ‘Green’ and have different data/records, the code did not copy Row 17 across.

    5) Both Rows 13 and 17 should also be copied both to their respective colour sheets and also to the ‘Summary’ sheet

    For the ‘SUMMARY SHEET’:
    Finally, I also observe that everything in the Main Data Sheet is copied across to the Summary Sheet. Please, this should not be the case. Only rows with any of the THREE colours should be transferred both to their respective colour sheets and also to the Summary Sheet.

    Any row without any of those colour should not be left out and not copied across even to the Summary sheet, e.g. Rows 5, 9, and 15 (of the file currently attached.)

    That was a very brilliant code that you wrote. However, with these two adjustments, the code will be working perfectly OK for me.

    Thanks so much for everything.

    Buddy8
    Attached Files Attached Files

  8. #8
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    See the attached file which probably is a good start to what you want.

    How the software works:
    a. A temporary Helper Column is created in each of the sheets (in column 'G') which is a concatenation of the data in columns 'A' thru 'D'.
    b. Each row in the 'Main Data' Sheet is processed and:
    (1) Put on a 'Color' Sheet (including the Helper Column) if the data meets to criteria of the Color Sheet, and the data does not already exist on the the 'Color' Sheet. The helper column is used to check for duplicate data using the Application.WorksheetFunction.Match() function.
    (2) Put on the 'Summary' Sheet, if the data does not already exist on the 'Summary' Sheet.
    c. The temporary Helper Columns are removed.

    In an ordinary code module such as Module1 or ModCopyRows:
    Please Login or Register  to view this content.
    It is a best practice to declare all variables. If you misspell a variable in your code, VBA will silently assume it is a Variant variable and go on executing with no clue to you that you have a bug. Go to the VBA development window, click Tools, Options, and check "Require Variable Declaration." This will insert the following line at the top of all new modules:
    Please Login or Register  to view this content.
    This option requires all variables to be declared and will give a compiler error for undeclared variables.

    Lewis

    Firewall would not allow item in red above. When BOLD and Color put arround the word 'Select', the Firewall allowed the item.
    Attached Files Attached Files
    Last edited by LJMetzger; 09-30-2015 at 09:57 AM. Reason: Fighting with Sucuri Firewall

  9. #9
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    After sending my Post #7 and after my PM to you, something occured to me. If we must use a column as an ID column to ensure that there is no duplication of rows, then I will be happy to insert a column at the beginning of each sheet and then just number the rows 1,2,3,4,5, etc. down. and have these numbering serve as the ID or Key (that is, if in using your code, we must have a unique ID column).

    But if your code can be adjusted to copy across a row with any of the colours without such additional ID column and notwithstanding that the row has, in column D, a number that has occured previously, then I will be very happy. I am not particularly worried about the duplication of an entire row. Such an occurence is not usually possible with the work that we do.

    In that case, in the Sample-2 file that I attached to my Post #7, you could insert a first column on each sheet (named .Row No.') and then give the column a normal 1,2,3 ... numbering.

    In tweaking your code, I hope you will also remember please, that if a row, in the Main Data sheet, does not have any Red, Green or Yellow colour, it should not be copied to the Summary sheet.

    Again, thanks for your help.

    Buddy8

  10. #10
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi LJMetzger,

    That was quite some work by you. Thanks for your time and help.

    I have tried your code and observe that it works exactly like Xladept's code in his Post #6. The only difference is that Xladept's code ignores or leaves out a row that contains, in column D, a number that has previously occured in that column - even though the rows contain different other data/record. Such rows should be copied across provided they meet the criteria and contain Red, Green, or Yellow colour in the adjacent cell in column E.

    As one who is still new in vba, I currently feel overwhelmed by your massive code. I want to learn and improve on my knowledge and skills like you all. Your code is very brilliant, and I will want to use it as a learning resource. It will help me a lot.

    However, for the work that I am currently doing, I find a smaller code, like Xladept's, easier to work with and manage. Additionally, we have other users of the workbook, and I'd like to keep things very simple for everyone.

    If Xladept's code could be tweaked along the lines of my Posts #7 and #9, respectively, I have not doubt that it will meet my needs. I'll appreciate if you could also have a look at them. I'll appreciate your kind input to it, if possible, to see how that particular little code could be tweaked so that -

    a) it can pick up and copy across rows that have any one of those three colours - even though they have, in column D, numbers that exist previously in that column; and

    b) where a row, in the Main Data sheet, does not have either Red, Green or Yellow, it does not get copied to the Summary Sheet.

    Again, thanks for your kind help.

    Buddy8

  11. #11
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    I think you'll like this one:

    Please Login or Register  to view this content.
    Last edited by xladept; 09-30-2015 at 03:40 PM.

  12. #12
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    Perfect! Very Brilliant!

    This your final code is magical. It is exactly what I want. Thank you very much for your help.

    Two final little questions, please:

    1. Currently, in order to trigger/execute the code, I or any other user will have to go to the VB editor and click 'RUN' and then close to go back to Excel. Is it possible to avoid this process and get the code trigger automatically? I do not wish to create a command button cos the file is shared by a number of users. Is it possible to trigger the code whenever a number appears in a cell in the 'D' column (since it is the number in that column that determines the colour)?

    2. Finally, each of the sheets has just one row as heading or title row? Does it make a difference if each worksheet has two title rows? The current live worksheets each has two rows for the title. Will this require any adjustment to the code?

    Again, thank heaps for your kindness. I really appreciate it.

    I am also thankful to LJMetzger for his his kind help.

    Buddy8
    Last edited by Buddy8; 09-30-2015 at 07:41 PM.

  13. #13
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Here's the Code altered for 2 header rows:

    Please Login or Register  to view this content.
    And here's event code for the Main Data Sheet Module:

    Please Login or Register  to view this content.
    Kenny, thank you for the rep and the compliments!

  14. #14
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    Thanks very much for your prompt and kind response, also for the altered code and the event code for the Main Data sheet. I believe you want me to copy the event code onto the Main Data sheet module.

    I will try that out.

    I remain eternally grateful to you for your patience and kind help.

    Kind Regards.

    Kenny

  15. #15
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    You're welcome!

    I thought of an improvement to the event code:

    Please Login or Register  to view this content.
    This way it will run whenever the input range is completed

  16. #16
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Dear Xladept,

    I feel very embarrassed to come back to you on this matter. I am very sorry.

    We had a team meeting this afternoon where we brain-stormed over the project and the way I have modelled the workbook and its worksheets.

    I realised that I made a major mistake in the way that I presented the problem and arranged the worksheets. Good enough, the code that you wrote might still work OK, albeit in a different way with the suggested new arrangement.

    While they are all happy about the help that you’ve given to our team through me, it was pointed out to me that I made a mistake and that the following should be the arrangement of the workbook.

    1. There are supposed to be 10 (ten) worksheets like the Main Data sheet, e.g. Main Data Sheet 1, Main Data Sheet 2, Main Data Sheet 3, etc. …… Main Data Sheet 10. – all with the same columns like our current Main Data Sheet.

    2. Then there would be the 3 sheets representing the three colours, Red, Green, Yellow.

    3. The desire is that the code should read each of the 10 Main Data Sheets and then copy across the Red Rows to the ‘Red’ colour worksheet, the Green Rows to the ‘Green’ colour worksheet, and the Yellow rows to the 'Yellow' colour worksheet.

    4. That means, Go to each of the 10 Main Data Sheets:

    a) check the D column of each and copy across, to the Red Worksheet, all the rows with nos. 1 to 11 on each D column

    b) Copy across, to the Yellow Worksheet, all the rows with nos. 13 to 29 on each D column, and

    c) Copy across, to the Green worksheet, all the rows with nos 30 to 41.

    There will not be a ‘Summary’ Sheet as we currently have now.

    The event code should trigger the main code whenever any number appears on column D of any of the 10 Main Data Sheets.

    Although it is possible that your main code might still work in some way in this new arrangement, I must state that I don't, in any way, underestimate the time and efforts it might involve you in thinking through and re-organising the code that you’ve spent a good deal of time putting together for us.

    I look forward to your kind advice and further help, please.

    Again, thanks for everything.

    Kenny
    Last edited by Buddy8; 10-01-2015 at 07:21 PM.

  17. #17
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    We'll need to write a new routine can you: Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  18. #18
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    Thanks very much for being able to help further with this.

    I have attached the file as you advised.

    1. The destination sheets (Green, Yellow, Red), are the first three sheets in the workbook.

    2. The 10 Main Data sheets (which in the live workbook will have different names) will then come after. For this test file, I have given the 10 worksheets the names Jan, Feb, Mar ..to Oct.

    3. In this example, the critical column is Column G – whereas in the previous example, it was column D.

    4. I have populated each of the 10 worksheets with test data.

    5. The code should check column G of each of the 10 worksheets, and

    a) any cell in that column that has the numbers 1 to 12 (& showing Red colour), the entire corresponding row should be copied to the first blank row in the ‘RED’ worksheet.

    b) Any cell in that column that has the numbers 13 to 29 (and showing Yellow colour), the entire corresponding row should be copied to the first blank row in the ‘YELLOW’ worksheet, and

    c) Any cell in that column that has the numbers 30 to 41 (and showing Green colour), the entire corresponding row should be copied to the first blank row in the ‘GREEN’ worksheet.
    d) Any cell in that column that has any number above 41 will not be coloured; it will be blank. The corresponding row for such a cell should not be copied.

    6. The code should do (a) to (d) above for each of the 10 worksheets.

    7. And as in the previous code, when subsequent entries are added to any of the 10 sheets, the previously copied rows should not be copied or duplicated, please. Only the newly or subsequently added rows should be copied across.

    8. When subsequent entries are added, it could be in either one, two, three or any number of the 10 worksheets. However, such entries can only be done by a user on a one-sheet-after-a-time basis.

    9. You will observe that the number that appears in the critical column G of each of the 10 main data worksheets is a product of column E x column F (e.g. E2*F2) etc.

    10. Therefore, with respect to the EVENT code, this means that, if it is possible, whenever any figure appears in any cell in column G of any of the 10 worksheets, the main code will be triggered.

    You advised that I should use the 'Paper clip' icon to upload the file. I could not find that particular icon, so I had to upload the file the usual way that I have in the past. I hope it is OK.

    Please let me know if you need further information or clarification on this or if you want me to upload it again.

    Thank you for your continued support.

    Kenny
    Attached Files Attached Files

  19. #19
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    As an addition to my Post #18 above, I just wish to let you know that I did not populate the 'destination' worksheets named (Red, Yellow, Green) with the data from the 10 main data worksheets.

    I thought that if I had to do so, it would mean copying all the coloured rows in, say, Jan sheet across first, then Feb sheet next, etc. But in the live workbook, when the entries are made, users will not wait until, for e.g. the Jan sheet is completed before going to the next sheet in that order. The sheets could be completed in any order depending on what information is available. Therefore, the copying across will depend on what sheet is completed at each time.

    So I thought that if I manually copied the coloured rows across on a sheet-by-sheet basis, and if you are going to use that 'order' to determine and put together the new code, they way the rows would appear on the destination sheets might end up misleading you. That is what I thought. I might be wrong. But if you need me to simply copy them across manually to populate the destination sheets, then I'll be happy to do so and re-attach the file.

    Please let me know.

    Thanks.

    Kenny
    Last edited by Buddy8; 10-01-2015 at 11:50 PM.

  20. #20
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    The no duplicate requirement dictates that we do the whole thing every time:

    Please Login or Register  to view this content.
    Event Code will now go into the ThisWorkbook module:

    Please Login or Register  to view this content.

  21. #21
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    I have just seen your latest codes for the new workbook arrangement. Thanks for your continued support. I will test it out and report back to you.

    Meanwhile, in your Post, you indicated as follows: "The no duplicate requirement dictates that we do the whole thing every time" May you kindly clarify what you mean that I should 'do everytime'. I'll appreciate your kind clarification and direction so that I don't make a mistake or mess the whole thing up.

    Kind Regards.

    Kenny

  22. #22
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Deleted - see below, please.
    Last edited by Buddy8; 10-02-2015 at 06:43 PM.

  23. #23
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Dear Xladept,

    You are indeed a genius! Thanks very much. I have tested the codes, and they work perfectly OK – just the way we desire it all to work. I can’t really thank you enough. I remain eternally grateful to you for all your help and goodness.

    I also tested it to see if any previous row, when duplicated in the ‘month’ sheet, can be copy-duplicated onto the relevant colour sheet. I am very happy to report that your code takes care to prevent such a duplication in the colour sheets. That’s really brilliant!

    I’ll still await your kind clarification/response to my Post #21 above.

    Kind Regards.

    Kenny.
    Last edited by Buddy8; 10-02-2015 at 06:53 PM.

  24. #24
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    "Do the whole thing every time" means to run the Buddy8 program for every entry as the only way to guard against duplicate entries.

    Thank you for the effusive compliments and thank you for the rep!

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  25. #25
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Xladept,

    Thanks. The procedure you have described is actually what I wanted, i.e. each time an entry is made in any one of the 'month' sheets, the code will trigger automatically and update the relevant 'colour' sheet.

    If, for e.g. four entries are made in the March sheet, the code will be executed/triggered after every one of the four entries. That's perfectly OK for me. I like it that way.

    Thank you.

    Kenny

  26. #26
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Sorry post deleted.

  27. #27
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    Hi Kenny,

    Was there a problem?

  28. #28
    Forum Contributor
    Join Date
    05-14-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003, 2007, 2010
    Posts
    120

    Re: Copy a row from one worksheet to another based on color filling of a cell in the row

    No Xladept, there was no problem. I was trying to send a 'thank you' Post to the administrators of Excel Forum, for the opportunity they created to enable some of us to meet brilliant and helpful people like you through Excel Forum. After typing it, I realised that sending it from this thread would send the Post to my email address!

    When I found out that I needed to send it by clicking 'Contact Us' below, I deleted it but did not, and still do not know, how to remove the remnant completely from the thread. Glad though that I eventually contacted them through 'Contact Us' below.

    Thanks heaps for caring and checking to know if I had any problem.

    Kenny

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copy row based on row color from another worksheet
    By twisted31 in forum Excel Formulas & Functions
    Replies: 16
    Last Post: 09-08-2014, 03:04 PM
  2. Replies: 2
    Last Post: 01-31-2014, 09:34 AM
  3. Automated Summary Worksheet Based on Filling In "Date Complete" Cell
    By tfink26 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-21-2013, 04:29 PM
  4. Copy a row from one sheet to another based on the color of a cell
    By Data2link in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-31-2013, 05:36 PM
  5. [SOLVED] Change Autoshape Color in one worksheet based on cell value in a different worksheet
    By Vigny Mathew in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-03-2012, 11:00 AM
  6. Replies: 2
    Last Post: 11-08-2011, 11:10 AM
  7. Cell BG Color based on another worksheet
    By adammc in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 11-07-2007, 07:17 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1