How to Create Interactive Dashboard Tabs in Excel | Ultimate Excel Dashboard Ep. 6

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024

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

  • @BezUmiaru
    @BezUmiaru 4 года назад +6

    Mate - you are a Migician! I have watched all the episodes in a row. This is simply amazing!

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

      Thank you, BezUmiaru 😊 That's great to hear! There is more to come

  • @yellowlynx
    @yellowlynx 6 месяцев назад

    For positioning the buttons, use the Selection Pane, use ctrl and click the active/inactive pair and do Align bottom and Alighn right and they will overlap - much more precise

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

    Simply, its perfect dashboard with very cool vba tricks. Thanks mate for sharing such informative video.

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

    It is pretty Simple Yet a very Novel way to doing something so beautifully effective ! Kudos to you Mate !

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

    Thanks man u helped me alot 🙏 i tried this method with 5 buttons it didn’t work, do u have any suggestions?

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

    Thank yiu for your generousity in sharing your knowledge. ❤⚘

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

    Thank you so much for sharing this amazing tutorial👍👍👍

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

    Must creative RUclipsr I’v see thx bro!

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

      Thanks for the compliment, Rodney 😊 I really appreciate it!

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

    Awesome work, Thank you

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

      It's my pleasure 😊 Thanks for your positive feedback.

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

    That's great!
    Thanks for inspiration;)

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

    Thanks so much for your help! please continue making these useful videos :)

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

    Great videos btw. Really learned alot. Quick question, Is there any way I can lock the all these shapes in place and still be able to use the pivot slicer and button? When I set the slicer to locked and then protect the worksheet the slicer button no longer work

    • @anarchistsalute
      @anarchistsalute 9 месяцев назад

      Anyone know? Because I just tried doing this myself

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

    Super) Thank you very much!

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

    Excellent, Magnificent.....

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

      Thanks for your positive feedback, Sir 😊

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

    You are awesome...👏👌

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

    The Office Lab, how would you create a line chart comparing multiple locations. I.E. in this workbook example, comparing sales between Alabama and Florida etc.? Is this done at the pivot table level by adding states to filters?

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

    Hello, thanks for the video.
    May I ask iif you encouter chart formal reset everytimee change filter ? By any chance you have any tips for this error?

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

    Hello.Thank you for the video.Want your help please.when I type Visibility of tab buttons and content,it shows error,please help me

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

    Hi, when i select a different button in the slicer my chart template changes to the Excel standard. How do I keep it from changes and make it stay the way I want it to be?
    Thanks in andvance.

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

    How do I get access to the sample data. I signed up in your website to access sample data but haven’t received any confirmation email with regards to this??
    I checked the spam folder also and it’s still not there.

  • @ユリの花-d2k
    @ユリの花-d2k 4 года назад

    Is this possible to make similar interactive tabs for Google sheets?

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

    If you had three buttons, would you just add an additional section of code for each display (add 2 lines under 'visibility of tab buttons' and add 1 line of code under 'Visibility of tab contents')?
    My code below:
    Sub Display_Weekly_Roaster_Pace()
    With ActiveSheet
    'Visibility of Tab Button
    .Shapes("Tab_Button_Week_Pace_Inactive").Visible = False
    .Shapes("Tab_Button_Week_Pace_Active").Visible = True
    .Shapes("Tab_Button_Month_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Month_Pace_Active").Visible = False
    .Shapes("Tab_Button_Year_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Year_Pace_Active").Visible = False

    'Visibility of Tab Contents
    .Shapes("Doughnut_Chart_Week_Pace").Visible = True
    .Shapes("Doughnut_Chart_Month_Pace").Visible = False
    .Shapes("Doughnut_Chart_Year_Pace").Visible = False

    End With

    End Sub
    Sub Display_Monthly_Roaster_Pace()
    With ActiveSheet
    'Visibility of Tab Button
    .Shapes("Tab_Button_Week_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Week_Pace_Active").Visible = False
    .Shapes("Tab_Button_Month_Pace_Inactive").Visible = False
    .Shapes("Tab_Button_Month_Pace_Active").Visible = True
    .Shapes("Tab_Button_Year_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Year_Pace_Active").Visible = False

    'Visibility of Tab Contents
    .Shapes("Doughnut_Chart_Week_Pace").Visible = False
    .Shapes("Doughnut_Chart_Month_Pace").Visible = True
    .Shapes("Doughnut_Chart_Year_Pace").Visible = False

    End With

    End Sub
    Sub Display_Yearly_Roaster_Pace()
    With ActiveSheet
    'Visibility of Tab Button
    .Shapes("Tab_Button_Week_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Week_Pace_Active").Visible = False
    .Shapes("Tab_Button_Month_Pace_Inactive").Visible = True
    .Shapes("Tab_Button_Month_Pace_Active").Visible = False
    .Shapes("Tab_Button_Year_Pace_Inactive").Visible = False
    .Shapes("Tab_Button_Year_Pace_Active").Visible = True

    'Visibility of Tab Contents
    .Shapes("Doughnut_Chart_Week_Pace").Visible = False
    .Shapes("Doughnut_Chart_Month_Pace").Visible = False
    .Shapes("Doughnut_Chart_Year_Pace").Visible = True

    End With

    End Sub
    Thanks you in advance!!! These videos are awesome

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

    at 9:10 , what if i want to have another button for another line chart? how can i put in Macro. Please help

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

    Sir I need your help, In my new office I have excel 2007 so I can't use slicers, please help how do I create Slicer for 2007 , my previous company CEO was so impressed with this dashboard for analytics and here I can't do anything , request your help sir

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

      Pls help me with only one slicer rest I will try and make it one my own , one slicer for one pivot

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

    Hello The office lab,
    How to remove that (blank) value in pivot table and chart? I have tried both filter and label filter option, but when I refresh and remove filter in slicer again the blank pop ups. How to fix this?

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

      Where exactly does that "blank" value show up? In the slicers? If that's the case, just right-click on the slicer and go to 'Slicer Settings'. Then a popup opens and in there you can select the "Hide items with no data".

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

      @@theofficelab it shows up in Pivot table and Pivot chart. In slicers I did the same what you said.

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

      Hi. Did you ever figure this out? I’m having the same issue and want to exclude a zero value from the pivot table so it doesn’t appear on my chart.

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

    Where did you get your icons for the titles?

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

      From the integrated icon library in Excel. It's available in the latest Excel versions.

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

    WOW 👏

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

    hello The Office Lab
    we need the video for Ep. 7 because it is very important to know how to change the theme. I hope to download this here in youtube or send it to me by an email
    finally I would like to thank you for this tutorial

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

    I get this error:
    "System error &h80070057 (-214702489). The parameter is incorrect"
    Any suggestions to fix that? Thx

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

      I guess you are copying the script from the website. Here is the reason. Look at the line ".Shapes(“Tab_Button_Sales_Units_Inactivective”).Visible = False". It should be "...Inactive". There is also an error related to booleans and visibility in the script from the website, but I'm sure you will handle it by your own ;)

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

    Went to your site for the fee templates to try, signed up for the download password a few times but never received it

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

    Amazingggggggg

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

    I liked the video!!!
    but too quick and complex!

  • @theofficelab
    @theofficelab  4 года назад +4

    Check out my new website excelfind.com for the Free Version of the Dashboard 🚀
    ⬇ FULL TUTORIAL SERIES PLAYLIST
    [Ep. 1] Basic Dashboard ► ruclips.net/video/cKkXtyjleX4/видео.html
    [Ep. 2] Background & Tile Design ► ruclips.net/video/NfEqCdfl23k/видео.html
    [Ep. 3] Modern Slicer Design ► ruclips.net/video/CbDTFfoePZY/видео.html
    [Ep. 4] Auto-Refresh Pivot Charts ► ruclips.net/video/Xdq7SE-z-Aw/видео.html
    [Ep. 5] Interactive Info Button ► ruclips.net/video/RZW-vQRr0nY/видео.html
    [Ep. 6] Interactive Dashboard Tabs ► ruclips.net/video/2qN5jUiJWMY/видео.html
    [Ep. 7] Interactive Settings Menu ► ruclips.net/video/fCFGqj4QcJU/видео.html

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

      The Office Lab can you show the vba if you would like more than 2 buttons? My version requires 4. I assume I just need four Boolean fields all false when the one that is clicked is true?