Hide/Show Objects in Excel VBA Macro | Toggleable

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ม.ค. 2025

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

  • @tomihume3652
    @tomihume3652 2 ปีที่แล้ว +1

    This is EXACTLY what I needed :) THANK YOU!!!

  • @sondraturnbull
    @sondraturnbull 4 ปีที่แล้ว +1

    Just what I needed! Thank you.

  • @carlo9567
    @carlo9567 2 ปีที่แล้ว +1

    Clear and simple👍

  • @viXenSB
    @viXenSB 2 ปีที่แล้ว +2

    How can I hide/show one full sheet depending on the value of one cell?
    Thank you, very helpfull content!

  • @oscararturovalenciagutierr1575
    @oscararturovalenciagutierr1575 ปีที่แล้ว

    Tnk very much. This is useful for my work

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

    thank you very much.. it's very helpful

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

    EXCELENTE EXPLICACION

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

    thank you very very much .. you are the best

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

    loooooove u thank u

  • @billgyrotech
    @billgyrotech 4 หลายเดือนก่อน

    Can you add code to have array of shape names and use that list to hide and unhide? Thanks

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

    As part of my thanks with your tutorial I able to create amazing code vba for hiding objects here is my code I've learned💓💓

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

      Sub wohooo()
      Dim A1, B1, C2 As String
      A1 = range("M3").Value
      B2 = range("N3").Value
      For r = A1 To B1
      C1 = "Picture" & " " & r
      Activesheet.shapes(r).visible = Not ActiveSheet.Shapes(r).Visible
      Next
      End Sub

    • @magicassassin1947
      @magicassassin1947 3 ปีที่แล้ว +1

      I'm so thankful 💓💓💓💓 finally I can now hide those objects in excel

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

      That is awesome!

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

    Thanks for theses videos. This is what I have been searching for. However, is there a way to hide the developer table, copying options on files located on a desktop with vba?

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

      I'm not sure if I understand your question. Can you clarify?

  • @Krysda225
    @Krysda225 ปีที่แล้ว

    what if the object is an object? Like an image you just pasted into the sheet? I find sometimes if you insert it as a picture, the image shows up blurry, as opposed to just pasting it there. It's name then appears as 'object #'. How do I manipulate that using 'ActiveSheet' in VBA?

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

    How can you hide shapes based on a specific cell value. I have a worksheet that i want to hide shapes based on Yes Or no answers in a specific cell

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

    Thankk you so much💓💓💓💓💓💓💓. No I will try to apply the dim features with this so this can automatically hide pictures objects in my excel. 💓💓 Thank you so much for this super amazing information

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

    How can I hide a command prompt window ( that black one)? Thanks in advance!

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

    Thank You.

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

    How can i remove or hide shape from copied sheet after create copy for master one

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

    How to hide an activeshape? For instance, there are 100 shapes in the active window, and I want to hide the selected shape? For example my friend clicked the shape, and now my task is to hide that shape. How can I hide it automatically w/out the need of knowing its name? Is there a word or code ActiveShape as like as ActiveCell?

    • @calebpecue6923
      @calebpecue6923  4 ปีที่แล้ว +1

      One thing I have done to hide multiple items at the same time is to group all the items together and hide that group instead of the individual items. I may do a video on how to do this.

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

    I'm totally puzzled on how to hide shapes that are not hidden when rows are hid.
    It is so annoying how excel not shapes when rows of that shape are hidden. It still shows.

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

      I would make a conditional that says if the row is hidden to hide "X" object. That's likely how I would handle that.

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

    ❤️❤️