Navigating Worksheets Using Combobox Activex Control

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • How to Navigate worksheets in a workbook using Combobox Activex control with VBA.
    Details available on our website: www.exceltrain...

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

  • @THECHANDUG
    @THECHANDUG 4 месяца назад

    Lot's of Thanks sir....

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

    Mr. Dinesh. Thank you for your explanation.

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

    Thanks for the share Dinesh.

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

    Its was really interesting and learning

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

    Thanks

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

    Great teaching. How do you input named ranges and click to go to that range or cell in the same sheet.

  • @ff-mu6cc
    @ff-mu6cc 8 месяцев назад

    cool!

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

    Thank for the video.
    It is possible to add more combobox dependets in the sheets "starts" to can consult other items of the differents worksheets?

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

      Just do it!

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

      These VBA tutorials in Excel will guide: ruclips.net/video/YIEt_S65GrU/видео.html
      www.exceltrainingvideos.com/filter-data-into-list-box-using-two-combo-boxes-data-as-criteria/

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

      @@Exceltrainingvideos , thank for your support, but I would like to know it is posible create a depedents combo boxes without use Userforms.

  • @Damodar.Shetty
    @Damodar.Shetty 5 лет назад

    Good morning Sir,
    Thank you for the video.
    Please help me with your inputs
    Is it possible to use the Combo box on multiple sheets ?
    Thank you in advance.

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

    It is nice learning sir. May i Request sir..,, i have a problem with choose sheet using combobox. How to makes a combobox to choose specific sheets with combobox or combobox not show all the sheets but only sheets we want..??

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

      These video tutorials will help:
      www.exceltrainingvideos.com/hyperlinks-vba-code-to-navigate-worksheets-in-large-workbooks/
      www.exceltrainingvideos.com/navigating-worksheets-using-combobox-activex-control/

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

    I do not like that you have hard coded the sheet name “Expenses “ to force the macro to populate the combo box. What happens if the user deletes or renames the Expenses sheet?

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

      Use the Worksheet.CodeName property
      docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet.CodeName

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

      This link might also help: www.exceltrainingvideos.com/prevent-worksheet-name-change/

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

    Why is this code not populating the ComBox? I named the box CBsheets
    Private Sub Worksheet_Activate()
    Dim Sh As Worksheet
    For Each Sh In ThisWorkbook.Worksheets
    Me.BCsheets.AddItem Sh.Item
    Next Sh