+ Reply to Thread
Results 1 to 17 of 17

create an info input tab to transfer new information into other sheets?

  1. #1
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Lightbulb create an info input tab to transfer new information into other sheets?

    Hi there,

    I'm not looking for specific coding or anything like that, but rather, I want to know how I should go about creating this. I've created a project management workbook to track all of my projects, each of which include a checklist of things to do.

    It has become quite cumbersome to copy & paste new templates in and input all of the information every time, so I'm wondering if there is a way that I can create a sheet with just one existing template, where I type all the information into and it gets automatically transferred into my project management tab and then the template information subsequently erased so that I can repeat this process again and again?

    Basically I want this tab to:
    1. Copy & Paste new template 2 rows beneath current projects (for visability)
    2. Automatically transfer all data from the input tab
    3. Erase entered data from input tab so that it can be done again and again

    Thanks for any and all help in advance.
    Attached Files Attached Files
    Last edited by Pepe Le Mokko; 02-26-2020 at 11:57 AM. Reason: Shorten title

  2. #2
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    This certainly is possible by inserting a new sheet that will act as the input template. After the template is populated, the data can be copied to the project management tab and then cleared to be ready for more input. If you attach a copy of your file (de-sensitized if necessary) we could help with some coding.
    You can say "THANK YOU" for help received by clicking the Star symbol at the bottom left of the helper's post.
    Practice makes perfect. I'm very far from perfect so I'm still practising.

  3. #3
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    That would be great to help me get going! I have a macro included in this spreadsheet that copies the template from "Template to copy" and pastes it into "Projects" below my current work. I did not write this macro but rather got it from someone else on this forum, with their help and a couple of tried it finally works. But I've no idea where to start with the whole Input Template that copies information over into my Project sheet.

  4. #4
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    I still don't quite follow. The macro you currently have copies "Template to copy" to "Projects". I'm not sure what the purpose of the Input Template is. Is "Template to copy" your actual template where you will be inputting the data? My understanding was that you would have 2 sheet only, the template and the Projects. You would fill in the template, copy it to the Projects and then clear the template. If that is the case, your current macro does that. Please clarify.

  5. #5
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    I wanted to input the information into the "Input Template" sheet, then have that information automatically copy & paste into the "Projects" sheet, then reset the "Input Template" sheet so I can do it again. The macro I have already written is really only doing 1/3rd of that, but it was a start. I certainly don't need that macro - The end goal is and always has been just about the "Input Template" and "Project" sheets. Hope that clears things up!

  6. #6
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Try:
    Please Login or Register  to view this content.

  7. #7
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    PERFECT! This worked first try!!! Thanks so much for writing that. There's one little thing I Want to add, and that is the checklist at the bottom of the template and to also have it copy over to the "Projects" tab when I run the macro. So what I'm wondering is: What part of this code can I change to instead, copy the range A2:W73, and then proceed to copy that over to the "Projects" tab?

  8. #8
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    This part of the code already copies A2:W73 to the "Projects" tab. Is it not doing that?
    Please Login or Register  to view this content.

  9. #9
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Yes it does, sorry. I just got the chance to test it out again - I see it it erasing all of the data from the Input Template sheet when I run the macro, when in fact I'm just trying to erase the header; The checklist remains the same throughout all projects. I thought I would just be able to easily add an additional copy & paste of this checklist beneath every project header (after running the macro), but it seems its not so simple after all

  10. #10
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    What are the ranges in the Input Template sheet that you want to erase?

  11. #11
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Oh boy... I know I'm asking a lot here... But:

    I basically want to copy the entire thing to "Projects", and only erase or 'reset', if you will, cells C2:L2 as well as O2, and P4:P29. Lol!

  12. #12
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Try:
    Please Login or Register  to view this content.
    You have some merged ranges in your sheet. You should avoid merged cells at all cost because they almost always create problems for macros. Hopefully, this macro will work without any errors.

  13. #13
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    I'll give this a shot tomorrow at work, thanks! I can't remove the merged cells because that would involve starting from scratch basically and re-inputting all formulas and conditional formatting - I'll let you know how it goes!!

  14. #14
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Hey there,

    So I tried the code out, and you're right. I'm getting a:

    Rum-Time error '1004': Cannot change part of a merged cell.

    What exactly does this mean? Why would having some merged cells create a problem for this?

  15. #15
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: Is it possible to create an info input tab to transfer new information into other shee

    This link describes very well why you should not use merged cells: https://www.perfectxl.com/about-spre...t-merge-cells/

    Do a little research into "CenterAcrossSelection". This gives you the same visual effect as merging cells without actual merging them. This only works with horizontal ranges not vertical so you should not merge cells vertically.

  16. #16
    Forum Contributor
    Join Date
    02-18-2020
    Location
    Ottawa, ON
    MS-Off Ver
    Professional Plus 2010
    Posts
    119

    Re: Is it possible to create an info input tab to transfer new information into other shee

    Hmm that is very interesting. I can certainly fix a lot of my merged cells with center across selection, however, if I'm to do that for all the merged cells in my cheer, it is going to mess up my conditional formatting. All of my 'Action Required' cells are formatted to highlight their cells to certain colors if actions are needed, and with this, only the first cell is highlighted. If I can find a way to highlight all 4 cells in the row, then this could work!

  17. #17
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 2013
    Posts
    7,806

    Re: create an info input tab to transfer new information into other sheets?

    Unfortunately, unmerging is the only way to fix the problem.

+ 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. Master sheet that can transfer/edit information in other sheets
    By mwinn004mwinn004 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-25-2016, 09:49 PM
  2. Replies: 3
    Last Post: 09-07-2014, 10:31 AM
  3. transfer information from one sheet to multiple sheets if yes entered
    By xoch in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-11-2014, 01:52 AM
  4. Transfer info based on matching sheets
    By ckgeary in forum Excel General
    Replies: 4
    Last Post: 06-15-2013, 09:04 PM
  5. Multi sheets info transfer VBA (Excel 2003)
    By Excelnoub in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-09-2012, 11:38 AM
  6. Replies: 8
    Last Post: 05-01-2009, 12:38 PM
  7. Replies: 4
    Last Post: 02-19-2009, 06:59 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