+ Reply to Thread
Results 1 to 57 of 57

Excel Form - need macro to add multiple rows with data validation & conditional formatting

  1. #1
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Excel Form - need macro to add multiple rows with data validation & conditional formatting

    Hi,

    The excel form looks like in the attachment. Each Product has multiple rows with cells containing data validation, drop down lists, instructions and conditional formatting.

    excel form.png

    For example if a quantity is entered, the form will highlight in red the other required cells to be filled out. Once the information is entered the red background will disappear. The "Description" field is limited to 30 characters. The "Part Number" and "Manufacturer" are restricted to selections from drop down lists.

    I need to include the option of adding other Products as necessary, with all the product's information as specified in each of the 4 adjacent rows, but keeping the same parameters: data validation,instructions, conditional formatting and formulas.


    Thank you for your help!
    Attached Files Attached Files

  2. #2
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014

    Welcome to the Forum!!!

    I don't know if this is precisely what you want but I believe it's close. Please note, I've changed your Conditional Formatting Row References from Absolute to Relative...eg
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.
    This Code seems to do as you require.
    Please Login or Register  to view this content.
    Attached Files Attached Files
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  3. #3
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    John, I truly appreciate your help! You made it look so easy... The Code is very close to what I was looking for.

    There are 2 things that need revision:
    1 - the check box for the Capital is lost when a new item is entered - Would it be possible to add the check box to the code? If not, probably I will restructure the cell and instead of a check box I will use a Y/N drop down

    2 - I noticed the code will replicate the previous product including the details and the values. Can it be adjusted so it will enter a blank product (with all it's lines) but keeping the validation and the conditional formatting?

    THANK YOU!

  4. #4
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014

    Try this Code in the attached...
    Please Login or Register  to view this content.
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    This code works fine, but it still keeps the "manufacturer" value from the line above. I am not sure on how to adjust this.
    Thank you Jaslake!

  6. #6
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014

    I missed a line of Code...try this
    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Thank you for the fast reply! I kind of guessed it and I have been close
    I noticed that if the last item is deleted, the check box will still remain on the top of the button "Insert Product". Or if 2 new items are added and than deleted, 2 check boxes will remain on the top of the Insert button. Any thoughts on this?

    Thanks again!

  8. #8
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    I'll look at it...

  9. #9
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014

    Unfortunately you'll need a Button to do this. Who will be using the Form...only you or other Users? If other Users I'd suggest we disable the Right Click Delete Option.
    Please Login or Register  to view this content.
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    You are a true GURU This code works!

    This forms will be used by others too. Is there anything else needed for others to use the form? Any special instructions?
    What do you mean by disabling the right click delete option?

    Thank you!

  11. #11
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014

    Well, if the other Users can be disciplined to use the Button for deleting Rows, all is well. As it stands now, they can still select the Rows and then delete the Rows with a Right Click. That will leave the "hanging" CheckBox...

  12. #12
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    It looks like there is a problem: I will need to protect the form to restrict editing by other users, the code seems not to work properly if the form is restricted and password protected...

  13. #13
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Attach the Protected Workbook...be sure to include the Password...we'll see what we can do.

  14. #14
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    I can send you the form protected, but is the one you sent me. If you protect the latest form you sent me: Form_v3, you'll see the error code.
    To protect the form I use this path: Review Tab -> Protect Sheet -> options checked on: Select locked cells; Select unlocked sells; eventually also: Insert and Delete rows.

  15. #15
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter2014
    This Code has been added to the Workbook Open Event...should do as you require...change the Password as appropriate
    Please Login or Register  to view this content.
    Attached Files Attached Files

  16. #16
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    When I open the attachment I am getting an Run time error message. Please see screenshots attached.
    1.png2.png

    Thank you.

  17. #17
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    When I try to open the Form I am getting a Run Time error.
    Please see the screenshots attached.

    Thank you.
    2.png
    1.png

  18. #18
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    Don't know. I've tested in Excel 2007 and 2010 and works fine.

    Excel 2013 may have an issue. Try replacing the Workbook Open Code with this
    Please Login or Register  to view this content.
    Attached Files Attached Files

  19. #19
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    It seems to be working! I am trying now to replicate the code from From v4 into my actual form. There are only 3 differences between the initial form and the actual form I will be using:
    1. In the actual form the first line item starts in line 17 (instead of 4)
    2. The Price is a merge of columns F and G. (instead of column F)
    3. The value is extended to column H (instead of column G)

    Attached is a screen shot of the code adjustments. I am sure I must have been entered something incorrectly because the code is not working in the new/actual form. Could you please take a look and help?

    Thank you very much!

    MODIFIED CODE.png

  20. #20
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    If you will attach the File (with your revised Code), I'll look at it.

    (Merged Cells should be avoided if at all possible)

  21. #21
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Sorry, I have not included the screenshot. Please see attached.

    Thank you very much!actual form.png

  22. #22
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    Pictures are of little value.

    Please attach a sample file that represents what you have. The structure of your attachment should be the same structure as your actual data. Any proprietary information should be changed.

    Include in the attachment any code you're currently using (whether it works or not and, if appropriate, an "After" of what you wish the output to be.

  23. #23
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    so sorry for the delay! I wanted to add the excel form I'll be using but I am not sure on how to attach it...

  24. #24
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Here is the form I'll be using attached.

    THANK YOU!
    Attached Files Attached Files
    Last edited by Winter2014; 02-14-2014 at 02:41 PM.

  25. #25
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    If you will attach the File (with your revised Code), I'll look at it.
    Doing so will help me understand what it is you require...

  26. #26
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    The requirement is the same,the form should include 2 Buttons : Add Item & Delete Item.
    The latest code you sent me on 02/04 with Form V4 needs to be adapted to work on the form version I sent you today.

    Thank you.

  27. #27
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    Try the Code in the attached...
    Attached Files Attached Files

  28. #28
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    I have tested this form and noticed that when an item is deleted, the cells A4, A8, A12 and A16 are changing the text content into numbers.

    Also when an new item is added, it copies the above item values, it replicates the item above. I would need the Insert Item button to copy the corresponding item rows with empty cells but keeping all the validations on.

    In this form/code don't we start from row 17 column 1, instead of (4,1)?


    Sub New_Product()
    Dim r As Range
    Dim myCBX As CheckBox
    Dim myCell As Range
    Application.ScreenUpdating = False
    Set r = ActiveSheet.Shapes(Application.Caller).TopLeftCell
    Cells(r.Row, r.Column).Resize(4, 1).EntireRow.Insert



    Thank you!

  29. #29
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Thank you very much for your help!

  30. #30
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    I'll look at it...please wrap any Code you post in Code Tags.

  31. #31
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    We'll get it right...eventually...
    Attached Files Attached Files

  32. #32
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    I am getting an error message when I try to open form 5.1 L1 v2

    It is about the form content: Excel completed file level validation and repair. Some parts of this workbook may have been repaired or discarded.

  33. #33
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    So do I...try the attached...no clue what happened...
    Attached Files Attached Files

  34. #34
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    I opened the form with no problems, but noticed that the validation for the New Product added doesn't work properly. In fact any/all New Products added are linked to the validations on item #5...

  35. #35
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Jaslake,

    I opened the form with no problems, but noticed that the validation for the New Product added doesn't work properly. In fact any/all New Products added are linked to the validations on item #5...

  36. #36
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    I don't understand...Data Validation appears to do as required...

    Please explain
    Attached Files Attached Files

  37. #37
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    It is actually the formatting that is not working for the new products entered.
    If a quantity is entered => the price, material, text and element cells will turn Red. (Red cell = cell required to be completed)

    This formatting works on item#1,2,3, 4 and 5. It doesn't work on any New Product added.
    The formatting for all new products added depends on the values that are entered for item #5.

    test this: delete the quantity for item#5 and see how it affects the formatting on the new items added #6 and #7.

  38. #38
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    or try testing this: instead on selecting material#1 on item#5, from the drop down choose "select" and see how the material cells are affected on item#6 and #7

    Thank you for looking into this.

  39. #39
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    Your Conditional Formatting is Absolute...it needs to be changed to Relative. I did this in the earlier versions but had not done so in the most recent version.
    Do you know how to do that or should I...

  40. #40
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    yes, I remember! I'll change it and see if it works.
    I will let you know.

    Thank you.

  41. #41
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    I have changed the conditional formatting from Absolute to Relative. For new products added, the conditional formatting works for the unit price only, it doesn't work for material, text and element lines, unless I will choose one of the options from the drop-down, then switch back to "select..." or if I will open the conditional formatting for the new product and hit apply...

  42. #42
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Please see attached the form with the conditional formatting changed to Relative.
    Attached Files Attached Files

  43. #43
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    I don't know...will work on it tomorrow...

  44. #44
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    I don't know. The CF Rules appear to be in place but are not being applied. Spent several hours on Google and could not find an answer.

    I'd suggest you start a new Thread for this specific Issue...I can't solve it.

  45. #45
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    but you have already worked a lot and now you are so close to solving it ...

  46. #46
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    I'll send this to the Water Cooler and ask for some help. I truly don't know why the Conditional Formatting is not being applied...the Formulas appear to be in place but aren't firing.

  47. #47
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    The worksheet is protected and we don't have the password ... so we (at least I) can't see the CF. And I don't know what the process is to trigger the CF.

    Am I missing something?
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  48. #48
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Trevor

    Sorry, forgot about the Protection...the Password is 123

  49. #49
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    I'm not sure of the rationale here, but I put 1 in each of the quantity cells to identify which CF were/weren't being actioned. Then I pressed F2 and Enter on each of the Select... cells. And then I deleted the quantities. After that, when I put a 1 in the quantity cell, everything lit up. As I entered data, the lights went out.

    Focused on D39. You could combine the CF rules to give you:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    You don't need to say "=TRUE" and I rarely use IFBLANK. So, combining them gives you a shorter formula and only one CF rule to apply.

    Regards, TMS

  50. #50
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Trevor

    What does F2 do?

  51. #51
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    When a cell is selected, F2 puts it in Edit Mode. You don't need to change anything. Just press Enter to re-commit the current contents.


    Regards, TMS

  52. #52
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Hi Winter

    This SEEMS to work with the CF...if so, give Trevor credit for pointing down a SEEMINGLY right track...it's ugly.

    You may want to consider Trevor's suggestions regarding your CF Formulas...I didn't change them.
    Please Login or Register  to view this content.
    Attached Files Attached Files

  53. #53
    Registered User
    Join Date
    01-24-2014
    Location
    United States
    MS-Off Ver
    Excel 2013
    Posts
    26

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Thank you so much for all your help!
    How can I mark the thread SOLVED?

  54. #54
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    You're welcome...glad I could help. Thanks for the Rep.

    Select Thread Tools from the menu link above to mark this thread as SOLVED.

  55. #55
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    Thanks for the rep. I feel I only played a small part in the process. All down to jaslake. But glad you have a solution.

    Regards, TMS

  56. #56
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format

    @ Trevor...were it not for your insight we'd not have gotten over the last hurdle...appreciate it...

  57. #57
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Excel Form - need macro to add multiple rows with data validation & conditional format


+ 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. Replies: 3
    Last Post: 09-12-2013, 06:26 AM
  2. Replies: 0
    Last Post: 03-19-2013, 04:39 PM
  3. [SOLVED] Conditional Formatting Using Multiple Values in Other Data Validation Cells
    By Uclaid in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-21-2013, 06:47 PM
  4. Excel Data Validation - Select Multiple Items - Need to Apply Macro to Multiple Rows
    By kristynroll in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-30-2012, 07:44 PM
  5. Conditional Formatting & Data Validation Lists - Excel 2003
    By joelr in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-23-2010, 01:29 PM

Tags for this Thread

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