+ Reply to Thread
Results 1 to 14 of 14

Moving data to another cell automatically - extended

  1. #1
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Moving data to another cell automatically - extended

    Hi,

    I was wondering if someone can help me on my problem.

    Sheet1: TaggingInfo
    Sheet2: ModerationInfo
    Sheet3: Tagging
    Sheet4: Moderation


    The scenario is:
    I'll paste the info's that I get on Sheet1 (such as "Media ID, Username, Title, Date") Once I pasted it. It will automatically copy and move it on Sheet 2 on put it on designated columns, also I only need to copy and move the Username, Media Id and Date and after successfully copying the info's on Sheet3 a confirmation will be prompt and say its successfully copied and will delete the info's pasted on Sheet1. So that it can make a new entry again and will automatically move to the next row.

    Same goes with Sheet2, If I paste information (such as Username, Media ID and Flagger. ) I want it to move on Sheet 4 on their designated columns.

    Previously I was helped by Sir @arlu1201 and gave this code, now I want to change some stuff and add new functions on the Tracker that I'm working. I'll attached the sample Spreadsheet that I made.

    I did tried to tweak the code and read on it but still I always get errors. etc etc.. Can someone please help and by any chance teach me a little about the code lines that you put so that in future I wont bother you guys


    Please Login or Register  to view this content.
    Any help will be much appreciated. Thanks!

    Krix
    Attached Files Attached Files
    Last edited by Krix; 03-20-2013 at 01:43 PM.

  2. #2
    Forum Contributor
    Join Date
    09-25-2012
    Location
    Philadelphia, PA
    MS-Off Ver
    Excel 2010
    Posts
    151

    Re: Moving data to another cell automatically.

    First thing is your sheet names in the code don't match you actual sheet names. So you need to replace "Sheet2" with "ModerationInfo" (if Sheet2 is actually ModerationInfo). Its ahrd to understand what you need when the sheet names in the code don't match your actual sheetnames

  3. #3
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically.

    Hi!

    Thanks for the reply. The code that I quoted was just a sample code that arlu made. So basically it doesn't really match

    - Krix

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Moving data to another cell automatically - extended

    ModerationInfo seems to have 9 fields which need to be copied. But Moderation has only 3. How do you want to proceed?

    What changes do you want done to the above code? Just add the code for the Moderation sheet?
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  5. #5
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Hi,

    Sorry for the confusion. What I mean is that If I paste the info's in ModerationInfo such as (Username, User Id, User link etc etc.) it will automatically move the Username, Media Id and Flagger on Moderation tab. Just like with Tagging.


    On the other hand, what I want to be changed on the code above is just that replace the Video title with Media ID. I don't want the Video title be moved on the Tagging Tab what I need now is Media ID.

    THANKS!
    -Krix

  6. #6
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Moving data to another cell automatically - extended

    So you want all information from the Moderation Info tab to be moved to the Moderation tab like how its done for the Tagging tab?

    And the existing Tagging code should be changed to show that the Media ID is reflecting on the Tagging tab instead of Title?

  7. #7
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Yes that is correct..

    Thanks!
    -Krix

  8. #8
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Moving data to another cell automatically - extended

    Try this updated code
    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Sorry for the late reply Sir.
    When I ever run the macro then looked at Media ID (Tagging tab only) it shows #VALUE error.
    - I think the problem is because Tagging and Moderation has different type set on Media ID. (Tagging tab has 'Media Id' while Moderation tab 'Media ID:"

    Also on both of tabs is it possible to remove the '(Weight: 1)'on Media ID? -Sometimes the value of Weight is 0


    Thanks!
    Krix

  10. #10
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Moving data to another cell automatically - extended

    Oops i forgot to mention that you need to ensure that each label has the ":" after the text so that the macro works fine.

    Where is Weight: 1 given?

  11. #11
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Hi,

    Can we just make a separate code for Tagging tab? Coz I always paste info with this format on media ID (Media Id97c409b6-9952-48f2-884f-9a761123d32e "what I just needed is the code and I want to erase the Media Id").


    Weigh: 1 is given on ModerationInfo tab. Is it possible to remove that when it moved on Moderation tab?

    Thanks,
    Krix

  12. #12
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Moving data to another cell automatically - extended

    You didnt mention anything about erasing the media id. You said you would like to copy the data onto the next sheet by excluding the text before the ":". However, in the 2nd page you had 2 columns instead of 1 like the previous page. So i directly got that data to transfer to the respective info page.

  13. #13
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Oh Sorry. I'm very sorry bout that. So is my request possible?

    Krix

  14. #14
    Registered User
    Join Date
    02-20-2013
    Location
    Philippines
    MS-Off Ver
    O365
    Posts
    49

    Re: Moving data to another cell automatically - extended

    Also, where can I put these codes?

    So that it will automatically removes hyperlinks.
    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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