VBA to Copy specific columns from one sheet to another - Advance VBA Tutorial by Exceldestination

Поделиться
HTML-код
  • Опубликовано: 11 авг 2017
  • This tutorial explains about VBA programming to copy specific columns from one sheet to another. Macro to copy only specific columns can be developed by using simple VBA Code and assigning this VBA code to Command Button.

Комментарии • 166

  • @mmmmarychristineqrqq
    @mmmmarychristineqrqq 5 лет назад

    Could you direct how to get the results on "two" to be copied to a specific range? My page two (OrderForm) is a worksheet of sorts that has the first, we will say, 6 rows occupied by various fill-in-the-blank areas and then there is a range of boxes available for the data to be copied to (say A8:F20). How could I identify that as the intended area destination area? I feel as though it would be in the "Worksheets(“Formulary”). Paste Destination: = Worksheets(“OrderForm”).Cells (erow+1, #)" line but I am still rather new at this. I appreciate any insight you can offer, thank you!

  • @abigailevans2760
    @abigailevans2760 6 лет назад +1

    Thank you so muuuch!!! This is a wonderful video

  • @vt7ellada
    @vt7ellada 3 года назад +1

    Exactly what I was looking for! Thanks man!

  • @SabirKhan-mk4zq
    @SabirKhan-mk4zq 4 года назад +2

    Hi thanks for making it simple to understand. Though is there a way to copy the column is slightly different format into other sheet?

  • @fabiocortese6069
    @fabiocortese6069 Год назад

    Thanks for this useful coding!!! I have a question: if I want to make dynamic the command Cells(i,11) how can I do? I need to extract information by different sheets with different structure but the columns have the same name. Is it possible?

  • @KayJohnsonArt
    @KayJohnsonArt Год назад +1

    Thank you. This video has been extremely helpful

  • @abiwerf9456
    @abiwerf9456 6 лет назад

    Hello, what if I wish to transfer to another workbook? The workbook I wish to copy from is "Status Report Internal", the destination workbook is "MDC".

  • @nancyd4088
    @nancyd4088 5 лет назад +1

    Hello- what if I want two conditions to be met? For Example, "Mobile or Fridge."

  • @sharifashaikh5205
    @sharifashaikh5205 4 года назад +1

    What if there is no data in a specific cell.. Any advise on the msgbox error and resuming to another code

  • @davesmith5080
    @davesmith5080 2 года назад

    Thanks for your information. This solution is really just a loop that copies row by row. It does achieve copying data from one column to another column it Works fine for small datasets but not great for 20,000+ records. Recommend your other tutorial of copy by selected region for larger datasets.

  • @AllinOne-cr2cs
    @AllinOne-cr2cs 5 лет назад

    i copy data from excel workbook column (E8:E18) in another new excel workbook,
    i have many excel workbooks, but data same location like this (E8:E18),
    can this possible ?

  • @marcrobichaud946
    @marcrobichaud946 6 лет назад

    Perfect great help thanks!

  • @shabarilucky5
    @shabarilucky5 5 лет назад +2

    thank you for making it simple, how to select in-between cloumns ( B, C, F, G, Q) in sheet 2 coloums ( A, B, C, D) . i have added manually by adding each work sheet coloums as explaind in toutorial . but it is taking 5-10mins . based on below reply form i have sent my work sheet to your gmail id . could you please help me out.

  • @jvelasq01
    @jvelasq01 6 лет назад +1

    Great Tutorials !!! What if I need to copy just the value with the format and not formula ? I was trying PasteSpecial, however gives me an compilation error

    • @mfarissolihin8644
      @mfarissolihin8644 4 года назад

      Replace this:
      source.Worksheets("SC-08").Paste Destination:=Worksheets("Sheet2").Cells(endrow + 1, 6);
      with this
      Worksheets("Sheet2").Select: Cells(endrow + 1, 6).PasteSpecial xlPasteValues
      I also feel that Worksheets("Sheet2").Select: Cells(endrow + 1, 6).PasteSpecial xlPasteValues
      runs faster. CMIIW

  • @youy9045
    @youy9045 Год назад

    VBA program karne ke baad bhi .. aur sorting karni padhti hai.. thode logic complicated hai... but we successfully did it...All past study of programming become usefull

  • @pilarschumaker3360
    @pilarschumaker3360 5 лет назад

    Thank you!!!! This really helped, the only thing is when I tried to copy Column A, B and C (ONLY) from Sheet "One" to Sheet "two" pasting to Column B , C and D it does not work, however if I set it to paste it on Column A, B and C it works just fine. With this formula, It seems like the pasting has to begin on Column A which is the first column. However I would like it to paste starting on Second Column (Column B) as I do not want the numbers to be changed on Sheet "two" Column A.

    • @ExcelDestination
      @ExcelDestination  5 лет назад

      while pasting also, you need to select cell, where you want to paste...I don't get enough time...but, I can see your code and correct it for you...send me ur file at EXCELDESTINATION@GMAIL.COM...I will try to respond on Sunday. Thanks again...

  • @boisvlearn4978
    @boisvlearn4978 Год назад +1

    You really saved me a lot of time, man. Thanks

  • @debjyotz007
    @debjyotz007 6 лет назад

    it is only copying the last row and not the entire workbook , any suggestions

  • @Allrounderz04
    @Allrounderz04 5 лет назад

    Thank for your help.
    I am looking to do something similar but not quite..
    I want to look for a specific row of headers end each time it finds a header called "ignore" it will delete all data below".. How can I do this?

    • @ExcelDestination
      @ExcelDestination  5 лет назад

      Thanks for watching! you can take help from one another tutorial ruclips.net/video/uyQSD9bpBj8/видео.html

  • @markthomas2866
    @markthomas2866 4 года назад +1

    Great video, easy to follow. thankyou

  • @comedydaily1592
    @comedydaily1592 2 года назад

    What if we need copy around 8-9 columns, can we follow the same code by changing location point? Also I have a very large data for around 200 rows, is this best option or there is any other way, cox this takes huge time,

  • @kcseforecast7580
    @kcseforecast7580 2 года назад

    How can I add two values in sheet1 and show the result in sheet2

  • @sarahgyles2724
    @sarahgyles2724 6 лет назад

    Hi there, How do i go about only transfering certain columns if a particular condition is met? So I need to take specific columns which you have shoen and I can get to work, but I only want particular columns of data to come over if a risk number in one of the columns is above 20. Do you have any advice please?

    • @ExcelDestination
      @ExcelDestination  6 лет назад

      Hi Sarah, Thanks for watching...I can say that some additional conditions required in order to do the task, you have explained...I would suggest...if you can send me your file at EXCELDESTINATION@GMAIL.COM with some dummy data and elaborate the requirement...I will definitely try to help you...

  • @deeprajdhar6008
    @deeprajdhar6008 Год назад

    Hi, thankyou soo much for this informative video, can you please help me with the VBA code to copy Specific Cells from Multiple Workbooks(from a single sheet) from each workbook and paste it in master sheet?

  • @salauddinkhokon5596
    @salauddinkhokon5596 4 года назад +2

    Sir I watched your entire video I think this will very helpful for many people. I have also a this kind of problem with some sort of different , I have also a purchase record sheet, and I a also want to transfer that record to my daily purchase record table in my dashboard sheets based on date. so how do I write code for this. If you want to see my table design I want to show you, thank you.

  • @maheshkumarkakumaani9455
    @maheshkumarkakumaani9455 5 лет назад

    If I have 30k of rows data, how much time it takes to copy?

  • @anhjaden4298
    @anhjaden4298 2 года назад +1

    Thanks. Can you make it to copy and paste from 2 different worksheets.

  • @TheLooking4sunset
    @TheLooking4sunset Год назад +1

    I am so grateful for it

  • @ahmedalrashi8175
    @ahmedalrashi8175 5 лет назад

    Thnx alot that helped me so much!

  • @danendrapradipto467
    @danendrapradipto467 2 года назад +1

    Thank you for your Information. But how if you want to copy+paste to another file excel (not in 1 file excel)??? Thank you

  • @MegaTony1965
    @MegaTony1965 3 года назад +3

    Hello nice tutorial. What about if we want to continue posting new data under the previous one on the sheet 2? Thanks.

  • @poojaomsree2031
    @poojaomsree2031 2 года назад

    Can we directly copy with code in sheet 2 without command button ,ie whatever added in rows or columns in sheet1 should be pasted in sheet 2 without command button, please explain what can change we do in code ?

  • @lianhlc
    @lianhlc Год назад +1

    Hi, thanks for sharing. It seems does not work for longer range of columns for sheet one and sheet two. I have 16 columns from sheet one to select and paste to sheet two that have about 27 columns. How to workaround your above VBA for longer range of columns of data? Appreciate for your advice.

  • @iamnyj
    @iamnyj 3 года назад +1

    Hi, is there a way to number the new list via macro? Thanks!

  • @yvandellvega4997
    @yvandellvega4997 Год назад +1

    Great sharing, keep it up!

  • @richardnina79
    @richardnina79 Год назад +1

    Thank you very much!
    Could you please give the code for doing the same but automatically from a specific cell on another sheet (i.e.: Print)?
    NB: That latter sheet has information such as Name and signature, and date of order.

  • @rayarb6384
    @rayarb6384 3 года назад +4

    I tried your code and it works very well. I am trying to copy multiple columns but I want to select the columns by their header names eg: Customer ID , Customer Name etc. I want Excel to find the header name (in case the column position changes later on (eg: Customer ID is now 5th column and not 1st) and then copy the contents under that header. Can this be done? I also want to copy to another new workbook instead of a worksheet on the same workbook. Thanks

    • @stohajunwa
      @stohajunwa 2 года назад +2

      Please have you solved this?
      I have a similar problem

    • @JinaneKarhani
      @JinaneKarhani Год назад

      @@stohajunwa Any solution both of you? @Ray Arb ?

  • @ligghtingon81
    @ligghtingon81 5 лет назад

    How to copy data from workbook to multi worksheet other workbook with condition

  • @maheshkumarkakumaani9455
    @maheshkumarkakumaani9455 5 лет назад

    thankyou for this video

  • @BARTLANTV
    @BARTLANTV 3 года назад +1

    Why too long? is there any shortcut for this, to shorten codes since , the source is active already... Can you create codes on copying sheet2 contents to sheet3 worksheet and the button command is in sheet1... Thanks a lot..

  • @hulidlo33
    @hulidlo33 4 года назад +1

    Very helpfull video. I have but one question. If I want to repeat that macro, but not to delete all the data I have already copied in the past. But Also I do not want to data which were already copied in the past to be copied second time.. How to obtain that ?

    • @ExcelDestination
      @ExcelDestination  4 года назад

      You can take help from another tutorial. Link is :
      ruclips.net/video/yPUCx9HTVvo/видео.html

  • @rav____
    @rav____ 4 года назад +1

    I want to be able to create a Macro where the user can:
    - Choose a file to import
    - Pull specific columns from the file (not in sequential order) and populate the destination spreadsheet
    Can you or someone help with the coding of this?

    • @ExcelDestination
      @ExcelDestination  4 года назад

      for any customized vba code requirement, you can write to exceldestination@gmail.com

  • @AnilKumar-tm6fq
    @AnilKumar-tm6fq 3 года назад +1

    Please tell pastespecial in same code how to use pastespecial instead of paste same program

  • @vimaltejamanne6103
    @vimaltejamanne6103 6 лет назад

    How to paste data at certain location in sheet 2 rather than to look for free cells .
    i.e. if i want to paste the data from b2 and follow it.

    • @ExcelDestination
      @ExcelDestination  6 лет назад

      thanks for watching! you can use same code with some modification...pls...send me your file with some dummy data...at EXCELDESTINATION@GMAIL.COM...I will respond over the weekend....

  • @govt.highschoolabbasianwal4036
    @govt.highschoolabbasianwal4036 4 года назад

    Hello Sir, this code worked fine for me though its a bit slower. I have a query that this code pastes the formula instead of values please help me to paste as values in target sheet. Thanks a lot

    • @ExcelDestination
      @ExcelDestination  4 года назад

      instead of copy paste formula........I would suggest directly apply formula through VBA. Send me email at exceldestination@gmail.com with your file and question

  • @jenesisjeffcariaso9818
    @jenesisjeffcariaso9818 5 лет назад

    Hello thank you. I have a question what about Copy it to another workbook those specific row? Is it possible? Thank you

    • @ExcelDestination
      @ExcelDestination  5 лет назад +1

      Hi Jenesis, it is very much possible to copy to another workbook...you would require some additional vba code to make object of workbook...and then you can do this...I will be uploading a tutorial soon for copying data from multiple workbooks...

    • @jenesisjeffcariaso9818
      @jenesisjeffcariaso9818 5 лет назад

      @@ExcelDestination thank you. Keep it up sir..

    • @ExcelDestination
      @ExcelDestination  5 лет назад

      Hi Jenesis, thanks for your appreciation...you can create workbook level object and then activating that workbook...and worksheet in that workbook...so, there would be little bit mote vba code, required for this need...try at your end...or, I would be uploading some tutorials for learning workbook level programming...thanks again.

  • @tereslok2063
    @tereslok2063 4 года назад +2

    It is a great info contained in the tutorial. I have it tun in my excel. There are around 900 rows needed to be copied, the VBA code made the screen flicking during the copy process. Have anyone encountered this problem?

    • @ExcelDestination
      @ExcelDestination  4 года назад

      you can use two lines of code additionally. as a first line, write Application.screenupdating = false and as a last line, write Application.screenupdating = true let me know, if it helps.

    • @tereslok2063
      @tereslok2063 4 года назад

      @@ExcelDestination Thank you for the prompt reply. It did help. But i have encountered other problem-the speed. If i do normal short cut (copy &paste), it only takes few seconds. Do you reckon i could do sth to the code to make it faster?

  • @MustafaAhmed-mb7hu
    @MustafaAhmed-mb7hu 4 года назад +1

    How can i extract data based on table header .....so that wherever data is pasted program will copy based on header (ex:- Customer Id)

    • @ExcelDestination
      @ExcelDestination  4 года назад

      you would be required to use code to loop through all columns and then evaluate column headings, before proceeding for copy and paste. For any Excel VBA Project, you can write to exceldestination@gmail.com

  • @judylraboy101
    @judylraboy101 4 года назад +1

    Hi... I use sheet 1 as a form and sheet 2 as monitoring. sheet 2 contains only few information from sheet 1.
    Question..
    1. how can I copy few data from sheet 1 to sheet 2 without losing the data in sheet 1 (using submit button)
    2. Then every time I will click the submit button from sheet 1, the specific data will add to rows in sheet 2. and continues.
    I hope you can help me with this...

  • @rupeshdubey6461
    @rupeshdubey6461 4 года назад +1

    Its showing sub or function error ? any help would be appreciated

    • @ExcelDestination
      @ExcelDestination  4 года назад

      thanks for your question, without looking at your code, I can not say anything. however, if you share your file at exceldestination@gmail.com, I will try to respond.

  • @cakchaitanya9782
    @cakchaitanya9782 Год назад

    I amgeeting the Run time error 424.Object Required message. Unable to execute the program. Please suggest how to proceed.

  • @nitinc2373
    @nitinc2373 4 года назад +1

    Dear Sir,
    Hello,
    I have two sheets, sheet1(Bending)&sheet 2(Daily Manufacturing Data).The sheet1's data filled by manufacturing dept.on daily basis. I want to transfer this data to sheet 2(Manufacturing Data)automatically. For example, in sheet1 on date 6 the manufacturing department add product 50X50X10GX5'X50',I want to transfer this data on sheet 2 in date6 and in front of that specific size,I,e,50X50X10GX5'X50'.This should be done on the daily basis. How can I do this?Please help me.Thanks.
    Nitin.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      please share your task requirement at exceldestination@gmail.com

  • @cakchaitanya9782
    @cakchaitanya9782 2 года назад

    I think using Vlook up is a better option to auto copy data (purchase items) of one column in an excel sheet to another column of another excel sheet

  • @makaniharesh1459
    @makaniharesh1459 3 года назад +1

    Thank you for make it easy...

  • @puffykarl3818
    @puffykarl3818 3 года назад +1

    Hello why this can transfer upto 35 row only? Is there any additional code to copy the entire column?

  • @swati_Lifestyle_Vibes
    @swati_Lifestyle_Vibes 4 года назад +1

    For me it is showing run time error 1004., Application-defined or object-defined error. How I could resolve this can you please me.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      without looking at code, I can not say anything. you can share your code at exceldestination@gmail.com

  • @ArunKLogan
    @ArunKLogan 3 года назад +1

    Nice video. When I run this for 5 columns against 7000 rows, it is running for 25-30 mins. Any ideas to reduce the timing is appreciated.

    • @ExcelDestination
      @ExcelDestination  3 года назад

      you can try making screen update false before the code and screen update as true at the end of code.

    • @ArunKLogan
      @ArunKLogan 3 года назад

      Excel Destination it’s not about screen fluctuating. This code works fine but taking 25mins to complete. Need idea of how can we reduce the time for 5 columns and 8000 rows.

  • @thatwanderingduo
    @thatwanderingduo 4 года назад +1

    lastrow = Worksheets("one").Cells(Rows.Count, 1).End(x1Up).Row .. this line is throwing error for me. Can you please help?

    • @ExcelDestination
      @ExcelDestination  4 года назад +1

      you have written the code incorrectly. Use .End(xlup) instead of .End(x1up)

    • @thatwanderingduo
      @thatwanderingduo 4 года назад

      Excel Destination Thank you sir. It’s working perfectly now :)

  • @alializadeh8195
    @alializadeh8195 2 года назад +1

    مرسی

  • @cakchaitanya9782
    @cakchaitanya9782 Год назад

    Sir I am not able to copy columns . Will you please the excel work sheet pl.

  • @gautamgarg7301
    @gautamgarg7301 3 года назад +1

    How can I copy selected column and selected row only to multiple sheet. Example: copy data in column 'C' and 'D' and in between rows 5 to 10 to another sheet named 'sheet1' and copy data in column 'C' and 'D' and in between row 13 to 19 to another sheet named 'Sheet2' as values.

    • @ExcelDestination
      @ExcelDestination  3 года назад

      You can watch following two tutorials to complete your task.
      1. VBA to copy and paste range (Link is given below )
      ruclips.net/video/fAis_cZ7cHs/видео.html
      2. VBA to Create range by row and column (Link is given below )
      ruclips.net/video/6edvmcCvCkA/видео.html

  • @jpatra1000
    @jpatra1000 5 лет назад

    I followed the steps as you shown on this video but getting an error message. "Run time error 1004. paste method of worksheet class failed. Please help

    • @ExcelDestination
      @ExcelDestination  5 лет назад

      Hello Jagannath, thanks for watching. You can send me your file at exceldestination@gmail.com. It is not possible to help you without looking at the code you developed. I will respond, once get time...thanks again

    • @jpatra1000
      @jpatra1000 5 лет назад

      @@ExcelDestination I sent the query along with the files attached. Please review and suggest

  • @christopherchan6490
    @christopherchan6490 4 года назад +1

    Would I be able to transfer one Column from worksheet 1 but then separate them into 4 different columns onto worksheet 2?
    Example:
    WS1: apple
    orange
    mango
    blueberry
    S berry
    melon
    Cherry
    WS 2: Apple Orange Mango Blueberry
    S berry Melon Cherry

  • @dipankarroy5529
    @dipankarroy5529 2 года назад

    sir,
    I watched your video, it was great. "Transfer data one sheet to another sheet specific column".
    I did the same way as you have shown VBA Coding, but there is a problem.When I am transfer data,
    the old data is being saved. I want the new update data to be transfer (save) only.
    Verify any unique code(Specific column) before transfer and then save.
    It is very good if you do any such video.
    Thank you

  • @ashokkumar-fd9qm
    @ashokkumar-fd9qm 6 лет назад

    I am trying to copy 1146 lines but after 3 lines copies.It is overwriting the first 3 lines instead of going to 4 line.Please can someone help?

    • @ExcelDestination
      @ExcelDestination  6 лет назад

      Hi Ashok, I can look into your file...if you send it to EXCELDESTINATION@GMAIL.COM

  • @archanaaa2514
    @archanaaa2514 4 года назад

    Hi.for d above example Can we use vlookup formula in vba?

    • @ExcelDestination
      @ExcelDestination  4 года назад

      yes

    • @archanaaa2514
      @archanaaa2514 4 года назад

      @@ExcelDestination sir, sometimes after executing vba code it doesn't show d result. It would be stuck immediately. later on it shows overflow error. How to solve this? I have used integer data type for row numbers up to 135. Still it showing overflow.which one I have to use? Am confused

  • @varshajethwani7726
    @varshajethwani7726 4 года назад

    I want the data in new workbook instead of new sheet. Please help me out. Thanks in advance.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      You can take help from this tutorial : ruclips.net/video/Dx_OfiBhHfw/видео.html

  • @sanjaybarge5487
    @sanjaybarge5487 4 года назад +1

    I want import two or three column from other excel workbook please make vba code

  • @samnangchhing3333
    @samnangchhing3333 6 лет назад

    This code copy is very very slow. Is there another way?

    • @ExcelDestination
      @ExcelDestination  6 лет назад +1

      Thanks Samnang for watching this! I will be uploading one more tutorial for data consolidating from multiple sheets....you will definitely get some idea from that code...it would be super fast (I expect :). I have tested it at my end...

    • @samnangchhing3333
      @samnangchhing3333 6 лет назад

      I'm looking forward to watch it. Thank for your help.

  • @rexwilliams2896
    @rexwilliams2896 3 года назад +1

    Is there a way to down load the code?

    • @ExcelDestination
      @ExcelDestination  3 года назад

      not exactly, however, you can pause the video and make the note.

  • @sant302001
    @sant302001 4 года назад +1

    IF THE DATA EXISITS IN SHEET 2 HOW TO REFRESH THE DATA BEFORE COPIED

    • @ExcelDestination
      @ExcelDestination  4 года назад

      You can take some help from following tutorial :
      ruclips.net/video/yPUCx9HTVvo/видео.html

  • @BharatKumar-fh7ei
    @BharatKumar-fh7ei 4 года назад

    If I do edit the text and also add new data, then is it work?

  • @ramireddy371
    @ramireddy371 4 года назад +1

    Why for me it is resulting only last cell, but not the entire row

  • @deepuhatti5833
    @deepuhatti5833 5 лет назад

    Hi thanks for the video.
    works well.
    1)can u share video with different workbook more the 5.
    2) to extract only column A,C,E.
    3) to extract only the `specified text ` if there mention in columns
    4) and also to match all formula and filled col as per column copyed

  • @dipankarroy5529
    @dipankarroy5529 2 года назад

    sir,
    I like your video very much. Please You create a data filter video,
    where data will be filtered from Sheet one to Sheet two,
    between two dates, but specific column. for example sheet one 20 column
    & sheet two (filter sheet)only 10 column data filter by VBA Coding.
    Thank you.

  • @gvanil3
    @gvanil3 3 года назад +1

    Hi, It is very helpful
    But i want to paste data from one sheet to another sheet without formulas
    Please let me know if there any formula

    • @ExcelDestination
      @ExcelDestination  3 года назад

      You can take help from another tutorial.
      Link is :
      ruclips.net/video/Dx_OfiBhHfw/видео.html

  • @ramdasthorat3165
    @ramdasthorat3165 3 года назад +1

    Nice video sir but how i can draw data transfer button & data clear button on userform except excel sheet

    • @ExcelDestination
      @ExcelDestination  3 года назад

      You can watch following tutorial for UserForm :
      ruclips.net/video/B40-vfnVagc/видео.html

  • @alexandergonzalojimenezcas3984
    @alexandergonzalojimenezcas3984 3 года назад

    I have this expression but I don't get it .please help me
    With sheets("overview")
    lastRowoverview= -4 + worksheetFunction.Max(.Columns("A:A"))
    .Range(.cells(12,2),.cells(12,2)).copy Destination:= .Range(.cells(13,2),.cells(lastRowoverview,2))
    In sheet overview column A there's nothing all data base begin in B12 and why is it copying this way ?

    • @ExcelDestination
      @ExcelDestination  3 года назад +1

      you can send me your file with dummy data at exceldestination@gmail.com, I will check and try to resolve

    • @alexandergonzalojimenezcas3984
      @alexandergonzalojimenezcas3984 3 года назад

      @@ExcelDestination I just Gaven it to you my friend, original file I hope you can find it intersting

    • @alexandergonzalojimenezcas3984
      @alexandergonzalojimenezcas3984 3 года назад

      @@ExcelDestination excuse me how's things I'm about to fix it but I need your help please are you ok ?

  • @BharatKumar-fh7ei
    @BharatKumar-fh7ei 4 года назад

    Sir I tried, but while try to run, gets error (Run-time error'9':). Pls clarify this error.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      you can share your file at exceldestination@gmail.com I will check and let you know.

    • @BharatKumar-fh7ei
      @BharatKumar-fh7ei 4 года назад

      Sir, as per video I done it, thanks.
      After entering data in Sheet one, always to click command button to copy data in Sheet two and take much time to copy.
      Is it any option to copy data in sheet two automatically on entering date in sheet one?

  • @rajesh7372
    @rajesh7372 4 года назад +1

    Hi
    Need to transfer another select data to another sheet kindly support

    • @ExcelDestination
      @ExcelDestination  4 года назад

      I am not sure, what you need exactly. I would say for transferring multiple times, you can use looping concept. for any excel vba task, you can send me email at exceldestination@gmail.com

    • @rajesh7372
      @rajesh7372 4 года назад

      @@ExcelDestination I have data, in this need to transfer selected data to sheets. Each data to different sheets

    • @ExcelDestination
      @ExcelDestination  4 года назад

      You can take help from another tutorial. Link is ruclips.net/video/UJSQpqBNswk/видео.html this tutorial is to split data into multiple sheets.

  • @bankingconsultancy7020
    @bankingconsultancy7020 3 года назад +1

    Code is working but the screen fluctuating more.

    • @ExcelDestination
      @ExcelDestination  3 года назад

      you can use additional code like "application.screenupdating=false" before the given code and at the end "application.screenupdating=true" this will avoid screen fluctuating........try this

  • @sicudut3854
    @sicudut3854 7 месяцев назад

    Hello sir, tq for yoir tutorial. I had followed your tutorial but its couldn't be

  • @marcrobichaud946
    @marcrobichaud946 6 лет назад

    Hi again, now let's say that the data has to be transfered to another workbook...

  • @rafaelquintero9029
    @rafaelquintero9029 5 лет назад

    It is take to long to run for a big amount of data in columns and more columns sorry it doesn't work for me

  • @testor9
    @testor9 4 года назад +1

    how to contact you for help?

    • @ExcelDestination
      @ExcelDestination  4 года назад

      exceldestination@gmail.com

    • @testor9
      @testor9 4 года назад

      @@ExcelDestination thanks, sent you an mail

  • @gopigopichand4379
    @gopigopichand4379 4 года назад

    How to copy multiple columns

    • @ExcelDestination
      @ExcelDestination  4 года назад

      I would say easiest way is use the same code two times. Try this........if still face trouble then send your file to me at exceldestination@gmail.com.

  • @L4k3rF4N
    @L4k3rF4N 3 года назад +1

    Does not seem to work in 2007

  • @pramodguptakg9653
    @pramodguptakg9653 4 года назад +1

    You could have done a better job explaining when and where to put data referring ours...I was very much confused as to where to put my rows or columns and ended up getting nothing ...words from layman

  • @mohannimmagadda3033
    @mohannimmagadda3033 4 года назад +1

    without declaring "i" as a variable, this code will not work. it's my observation.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      In VBA, you can use variables without declaring also until and unless you want to write core object oriented program

  • @raminderkaursekhon7302
    @raminderkaursekhon7302 4 года назад +1

    IT'S ONLY Pasting last row from one worksheet to another, not the whole columns.

    • @ExcelDestination
      @ExcelDestination  4 года назад

      without looking at code, I can't say much. But, I feel there would be something wrong with cells(row, column) part.

  • @Artistcorner_5847
    @Artistcorner_5847 3 года назад

    Where is the damn cursor?

  • @marcrobichaud946
    @marcrobichaud946 6 лет назад

    You never answered man!

  • @altafhussain4425
    @altafhussain4425 5 лет назад

    where's Vba code man ?
    Please attach it in the description.
    Please Don't make it difficult for lazy people here.