Excel VBA Macro to Paste Values & Number Formatting But Not Formulas

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 17

  • @CraigKnowlton-h8c
    @CraigKnowlton-h8c 11 หลายเดือนก่อน

    Thank you very much! I have viewed and tried several different videos and this is the one that works for my project. Very well presented, easy to follow and excellent subject knowledge

  • @noahnavarro8556
    @noahnavarro8556 5 หลายเดือนก่อน

    Great video. I was wondering if you have another video that would help hard code specific cell in multiple sheets. I am trying to hard code prior month numbers while leaving the formula for future months (keeping historical numbers). Thanks

  • @xx-lb7ps
    @xx-lb7ps 6 ปีที่แล้ว

    this was a life saviour :") THANK YOU SO MUCH

  • @sudarshanjadhav1676
    @sudarshanjadhav1676 4 ปีที่แล้ว

    Thank you so much for this video...!

  • @arielzabatecuizon5147
    @arielzabatecuizon5147 4 ปีที่แล้ว

    How can I assign values that includes the formats like if it is bold.
    For example cells(1,2).value=cells(1,1).value but it must include the bold format from cells(1,1).

  • @victormoreno803
    @victormoreno803 2 ปีที่แล้ว

    thank you

  • @andiandrianto3623
    @andiandrianto3623 7 หลายเดือนก่อน

    I want to paste the value in the cell I clicked on, not cell A15, how do I code it?

  • @brigadeshivu
    @brigadeshivu 4 ปีที่แล้ว

    Sir kindly let me know how i paste special multiple times at constant interval of time

  • @herur.m7066
    @herur.m7066 6 ปีที่แล้ว

    Thank you, really help me

  • @miteshpatel2799
    @miteshpatel2799 6 ปีที่แล้ว

    thanks this is very useful

  • @AlexA-dn2bn
    @AlexA-dn2bn 6 ปีที่แล้ว

    Hi, can you please explain how we can change the range to select cells A1:H1 and down to the last row (so when there are new rows of data added these aret's excluded)? Thanks :)

    • @stuartbrown5344
      @stuartbrown5344 6 ปีที่แล้ว

      Hi, create a Dynamic List and use the name that you have assigned to you Dynamic List as the Range.

  • @payamtaheri9450
    @payamtaheri9450 4 ปีที่แล้ว

    First of all thanks a lot for this, Second I got a question: I wrote this code and it keeps giving me an error that the size of the copy area and the paste area are not the same.
    but if I just use the copy-paste method, it works perfectly. could you pls help me out.
    Sub copy()
    eRow = Sheet5.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    Sheet4.Range("a4", "d23").copy
    Sheet5.Cells(eRow, 1).PasteSpecial (xlPasteValues)
    End Sub

    • @RapThesis2326
      @RapThesis2326 3 ปีที่แล้ว

      Because u have merged cell, it won't work in merged cell

  • @MohAboAbdo
    @MohAboAbdo 5 ปีที่แล้ว

    Thanks ... Thanks.

  • @clairejsquibb
    @clairejsquibb 7 ปีที่แล้ว

    Presumably the second macro will not give you the number formatting unless you had already applied those by the earlier Copy and Paste Values macro.