How to insert a drop-down list box into PowerPoint Presentation 2013(Remake)

Поделиться
HTML-код
  • Опубликовано: 6 мар 2016
  • Many were asking for this video and here it is.
    The link to the previous video: • How to insert a Drop D...
    Code:
    Private Sub ComboBox1_GotFocus()
    If ComboBox1.ListCount = 0 Then AddDropDownItems
    End Sub
    Sub AddDropDownItems()
    ComboBox1.AddItem "1"
    ComboBox1.AddItem "2"
    ComboBox1.AddItem "3"
    ComboBox1.AddItem "4"
    ComboBox1.ListRows = 4
    End Sub
    Please Subscribe....
  • НаукаНаука

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

  • @jb5304
    @jb5304 7 лет назад +1

    Incredibly helpful! Thank you so much.

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

    Thank you. Very informative and straightforward content.

  • @kelseygibbs2356
    @kelseygibbs2356 3 года назад +8

    Anyone know how to set it so that the drop down works in normal view and not just in slideshow mode?

  • @saanvisahavlogs4567
    @saanvisahavlogs4567 7 лет назад

    Thank you so much for the video, it really helped me in creating a request form.

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

    Great stuff. I see this is 6 years old, I hope you are still making content. Thanks!

  • @julioquiroz9552
    @julioquiroz9552 6 лет назад +3

    Good job, very helpful.

  • @nylsemig2931
    @nylsemig2931 8 лет назад

    Great Video - thanks - Perfect , Quick Solution.

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

    It's very helpful. Thank you very much :)

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

    Bro ur the Goat thanks for this so much

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

    Very helpful thanks!

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

    Hello Nanduri, I was wondering how could i create multiple indepedent dropdown list in ppt?

  • @amymorris5490
    @amymorris5490 8 лет назад +1

    Hey! Thanks for this. I have a question for you. Can this drop-down list be used whilst in 'Edit' mode of ppt or can it only be used whilst on 'Slideshow' mode?

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад +1

      +Amy Morris in edit mode I think no it can't be used only in slide show mode

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Amy Morris in edit mode I think no it can't be used only in slide show mode

  • @prashanthvana9812
    @prashanthvana9812 8 лет назад

    Thanks it is very useful to me

  • @KamranKhan-mu4ip
    @KamranKhan-mu4ip 7 лет назад

    thnx for the video
    kindly tell me how to insert hyperlinks on it. for example if I select figure 3 from drop down list and it should go to slide number 3. thnx

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

    Is there a way to view/select the drop down menu outside of present mode??

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

    How to wrap text to make it fit into a smaller box?

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

    Why is this so difficult. I just want to make a simple box with different letter choices. No actions. Why can't I find this info anywhere?

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

    how would you integrate this dropdown menu with a dynamic chart from excel?
    I know how to create dynamic charts using index and match with a dropdown menu, but I was wondering if we can do this in PPT too?

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

      Have you found the way? Bcs currently I'm searching for this.

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

    Muito obrigada 👏👏👏

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

    Thanks for the Video.could you help me how to insert text contents in the drop down ,where in I can present the contents . Thank You

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

    IS it possible to create a drop down that works outside presentation mode. Ideally, I want to share a presentation that I want ppl to update and I want to add a drop down list for them to click first before updating the slide.

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

      Did u figure it out how to do it? Im trying to do the same thing

  • @Richard-lb4uq
    @Richard-lb4uq 8 лет назад

    not to worry I've figured it out and all working. Thank anyway.

    • @tylerjam1980
      @tylerjam1980 8 лет назад

      +Richard B Hi matey, Can you please let me know you managed to link to another slide?

    • @Richard-lb4uq
      @Richard-lb4uq 8 лет назад

      +tylerjam1980 yeah sure. Of course change Page 1, Page 2 etc to your own words. I placed my drop down in a master page thus making it easier to change if I added new slides. Hope it helps.
      Private Sub ComboBox1_GotFocus()
      If ComboBox1.ListCount = 0 Then AddDropDownItems
      End Sub
      Sub AddDropDownItems()
      ComboBox1.AddItem "Page 1"
      ComboBox1.AddItem "Page 2"
      ComboBox1.AddItem "Page 3"
      ComboBox1.AddItem "Page 4"
      ComboBox1.AddItem "Page 5"
      ComboBox1.ListRows = 5
      End Sub
      Private Sub ComboBox1_Click()
      Dim i As Integer
      i = Me.ComboBox1.ListIndex
      Select Case i
      'first item
      Case Is = 0
      ActivePresentation.SlideShowWindow.View.GotoSlide 1
      Case Is = 1
      ActivePresentation.SlideShowWindow.View.GotoSlide 2
      Case Is = 2
      ActivePresentation.SlideShowWindow.View.GotoSlide 3
      Case Is = 3
      ActivePresentation.SlideShowWindow.View.GotoSlide 4
      Case Is = 4
      ActivePresentation.SlideShowWindow.View.GotoSlide 5
      End Select
      End Sub

  • @dougdewan2619
    @dougdewan2619 8 лет назад

    Hi, how would you create multiple drop down list boxes with the same drop down list on the same slide. I wanted to create drop downs in order to allow someone to select a choice for multiple items in the power point. When I copy the drop down it doesn't seem to keep the list.

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Doug Dewan I'm sorry but it cannot be core u have to create a new one Everytime

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

    Very Helpful! But I have a Trouble... when I change the meaning of the items of the list, in the slideshow get doubled,as example 1,2,3,4,1,2,3,4. Do u know if I have to change some properties of the combobox? Thank u!

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

      Could u please email me the issue with reproduction steps so I can help u better.

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

      I have the same issue ... can you please help me... ? My list is looping another 2 times

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

    It didn't work for me. WHen I went back to the Powerpoint slide it was still just an object. No pulldown menu. :(

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

    I am adding numbers like in this list, however, next to one of the numbers I want to add the word Standard between parenthesis, is there any way to do that?

  • @Paul-eo8hr
    @Paul-eo8hr 2 года назад

    Thank you! But I have a question... How can i fill each dropdown point with a different color ? Maybe somebody can help me out?

  • @mridupabankhargharia8775
    @mridupabankhargharia8775 7 лет назад

    Hi Nanduri, This video was really helpful.
    Additionally, could you please help me in linking the drop-down list with a dynamic table or chart in PPT?

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад +1

      +Mridupaban Khargharia I have requests for it already I'll be making a separate video in the near future. Subscribe to get updates

    • @mridupabankhargharia8775
      @mridupabankhargharia8775 7 лет назад

      Thank you for your prompt response! Certainly I'll subscribe to your channel

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

    Thanks a lot! Can you give me an example, how to make a message "correct" and "incorrect" appear on the screen, when the user chooses a particular option from the list?

    • @viralparmar365
      @viralparmar365 3 месяца назад

      I do this but there is one error pop up OBJECT REQUIRED could you please let me know where I'm making mistakes

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

    Please help me how to add a hyperlink of a picture in it

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

    Has anyone had trouble with the dropdowns working and then when you save and reopen you have to run them all individually again for it to work? I am new to macros in powerpoint to I am wondering if I am missing a step?

  • @umangkanani8408
    @umangkanani8408 7 лет назад

    Thanks for the help! but what if you wanted a drop down list of colors? how would we put a code for that?

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Umang Kanani I'm in the process of searching a solution for it. I have already got requests from many people subscribe to my channel I'm gonna make a video on it.
      Thx

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

    Can you color fill also

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

    Alguien sabe porque me marca doble cuando lo pongo en presentación en algún proyector. Hice todos los pasos, pero no deja ver tal cual

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

    Dude this was really helpful. I still have a question, how can you add a scroll bar to that drop list??

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

      Can you brief your question. What kind of scroll bar like if you add more data, that thing will automatically add one

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

      Srivastav Nanduri well the thing is that what I'm writing it to long and you can't see the whole text. I was talking about a horizontal scroll bar? (If that exists) but then I messed with the list width and know I can see the whole text

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

      Never tried to get a horizontal scroll bar. And yes tweaking the width will do the job. But since you say that your writing long text, give me a day time, I'll look into a way of getting the scroll bar and get back to you

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

      Man me again, I now know what I want: a vertical scroll bar, any thoughts on that?

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

    I am unable to make multiple copies this drop down. Can you show how this can be done

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

      If you want to add multiple combo box in 1 slide u must change the code to:
      Private sub youboxname1_gotfocus ()
      If yourboxname1 = 0 then
      With yourboxname1
      Yourboxname1.additem "item1"
      Yourboxname1.additem "item2"
      Yourboxname1.listrows = 2
      End with
      End if
      End sub
      Repeat code above as much as you want depends on your combobox.
      Good luck

  • @kmeisterus
    @kmeisterus 7 лет назад

    Thanks - this was in fact very useful. So here's another problem I'm dealing with - I want to put pictures instead of text in the combo box. Any ideas?

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +kmeisterus ya but I'm not sure if it will work or not so let me try once and if it works I'll guide u on how to do it

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +kmeisterus ya but I'm not sure if it will work or not so let me try once and if it works I'll guide u on how to do it

  • @frequencyart
    @frequencyart 2 месяца назад

    Is applicable for 2016 ?

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

    Hi I love the 3 videos you've done! But can i ask , how do i add another dropdown box list , on the same slide?

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

      Add the same code again but with a different id

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

      Srivastav Nanduri What different ID should I put? And where should I indicate the different ID?

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

      Srivastav Nanduri Thank you for replying! 🙏🏼

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

      Make combibox1 to combibox2 in the second code and also the function in the start to some other name of ur choice

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

      I hope that works. If it doesn't, email me and I'll send u the final code after I figured it out

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

    Hi
    Thank you for the video. How can i do, at the place of number to have pictures?

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

      I think with that implementation it isn't possible.

  • @Richard-lb4uq
    @Richard-lb4uq 8 лет назад

    Thank you for that, can you please me how I could use this menu to jump to a desired slide within the presentation? For example if I select the number 4 it will go to slide number 4.

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

    yeeeaa.....!!! :D soooo Yeaa

  • @downfallxofxsociety
    @downfallxofxsociety 8 лет назад +1

    Very helpful guide, thanks!But nontheless I receive an error: "Error while compiling Ambiguous name AddDropDownItems" whenever I try to add multiple dropdown lists on one slide. Could you tell me how to edit the code accordingly? It is clear for me, that I have to adjust ComboxBox1 to ComboBox2 etc.. Thanks in advance!

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Jan Sch I'll try it first and confirm u cos even I never thought of putting two combo boxes

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

      I also have this problem. Did you find a resolution that worked?

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

      This will work, Try this.
      Private Sub ComboBox1_GotFocus()
      If ComboBox1.ListCount = 0 Then AddDropDownItems
      End Sub
      Sub AddDropDownItems()
      ComboBox1.AddItem "1"
      ComboBox1.AddItem "2"
      ComboBox1.AddItem "3"
      ComboBox1.AddItem "4"
      ComboBox1.ListRows = 4
      End Sub
      Private Sub ComboBox2_GotFocus()
      If ComboBox2.ListCount = 0 Then AddDropDownItems2
      End Sub
      Sub AddDropDownItems2()
      ComboBox2.AddItem "1"
      ComboBox2.AddItem "2"
      ComboBox2.AddItem "3"
      ComboBox2.AddItem "4"
      ComboBox2.ListRows = 4
      End Sub

  • @rohitp1245
    @rohitp1245 7 лет назад

    hi.. Thanks for the video.
    I would like to know how to copy paste same drop down created slide multiple times. I have tried to copy paste it, but macros are missing. Is there any easy way to copy paste macros slides ?
    Thanks

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Rohit Phalak no u can't copy paste because u define objects for each drop down separately

    • @rohitp1245
      @rohitp1245 7 лет назад

      I want same objects. Basically same slide in multiple times

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Rohit Phalak I think it is not possible

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

      It depens on how many drop down list you wrote on the code. I did it like that, I wrote four and then just copied 4. If you want another list you have to do the same process

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

    Very Good!!!! and what about a code for a drop-down list box with interior diferent colors for correct and wrong answer. Thank you so much!

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

      You may try looking out on that from Visual Basic docs from Microsoft

  • @abhijitchatterjee816
    @abhijitchatterjee816 7 лет назад

    Hi Srivastav, posting was very helpful. But I cannot create a referral code to move to another slide. So I got so far as creating the drop down list but cannot refer a drop down to a particular slide. Created main links as INTRO | SITES | PRODUCTS - each one has three more drop down lists which refers to different slides. Can you please help me with it.
    I used
    With SlideShowWindows(1).View .GotoSlide 2, msoTrue End WithBut it is not working. It gives error. Requesting your help.Regards

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Abhijit Chatterjee I'll look into it and can u please attach a screenshot via hangouts

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Abhijit Chatterjee I'll look into it and can u please attach a screenshot via hangouts

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Abhijit Chatterjee I'll look into it and can u please attach a screenshot via hangouts

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Abhijit Chatterjee I'll look into it and can u please attach a screenshot via hangouts

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Abhijit Chatterjee I'll look into it and can u please attach a screenshot via hangouts

  • @Kmi1907
    @Kmi1907 7 лет назад

    Great video!! Thank you! I would like to know how to add another drop dow list in the same slide. When I tried to do it the code from the first drop down list appears and I have to idea how to add another code (I tried to add it after the first code and it didnt work)... THANK YOU!!! :)

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Maria Maldonado let me check and get back to u never came across such issue

    • @Kmi1907
      @Kmi1907 7 лет назад

      Thank you!! Even to add other drop down list in other slide is a bit challenging (when I try to follow the same steps for the next slide (for example slide 2) it doesnt show me "slide 2" but slide 4.... i dont really know how to explain you but the point is that is not really working :(

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад

      +Maria Maldonado I'll surely look into both the matters and come back. Thanks

    • @NanduriSrivastav
      @NanduriSrivastav  7 лет назад +4

      Hi Maria,
      Thanks for waiting. Here is the code you can use but before inserting the code make sure you have made the required number of comboboxes in the presentation as shown in the video. I have taken three as an example.
      Code:
      Private Sub ComboBox1_GotFocus()
      If ComboBox1.ListCount = 0 Then AddDropDownItems
      End Sub
      Sub AddDropDownItems()
      ComboBox1.AddItem "1"
      ComboBox1.AddItem "2"
      ComboBox1.AddItem "3"
      ComboBox1.AddItem "4"
      ComboBox1.ListRows = 4
      End Sub
      Private Sub ComboBox2_GotFocus()
      If ComboBox2.ListCount = 0 Then AddDropDownItems2
      End Sub
      Sub AddDropDownItems2()
      ComboBox2.AddItem "1"
      ComboBox2.AddItem "2"
      ComboBox2.AddItem "3"
      ComboBox2.AddItem "4"
      ComboBox2ListRows = 4
      End Sub
      Private Sub ComboBox2_Change()
      End Sub
      Private Sub ComboBox3_GotFocus()
      If ComboBox3.ListCount = 0 Then AddDropDownItems3
      End Sub
      Sub AddDropDownItems3()
      ComboBox3.AddItem "1"
      ComboBox3.AddItem "2"
      ComboBox3.AddItem "3"
      ComboBox3.AddItem "4"
      ComboBox3.ListRows = 4
      End Sub
      Thanks

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

      @@NanduriSrivastav Thank you so much for this! Trying to create a document with multiple pull downs in Power Point and this was the only reference on how to do this I could find. Maybe a topic for a new video! The only thing I don't care about about it is that the pull downs are only activated in Presentation Mode. Do you know if there is anyway to allow for when it is not in Presentation Mode but in Editing Mode??? Your thoughts would be appreciated Srivastav.

  • @kritikachoudhary7326
    @kritikachoudhary7326 8 лет назад

    Hi, I am following the same steps as in the video but getting an error "Object missing" Any idea how to resolve this?

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Kritika Choudhary can u elaborate ur issue or connect to me via hangouts

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Kritika Choudhary can u elaborate ur issue or connect to me via hangouts

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

    Is there a way to run automatically? I need to share this with users, and they won't know how to run the macros before...

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

      Hmm currently I can't provide any support on that. Thanks

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

    Doesn't run. Still shows as an object.

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

    Hi mate, could please to help me how can i figure out if i need the drop list like detail below:
    Option 1-> type Green with colour green fill in
    Option 2-> type Amber with colour orange fill in
    Option 3-> type red with colour red fill in
    Hopefully you can reply my question :)

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

      Could u write a prototype code and mail me on my email. I'll look into it and find if there are any possibilities

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

      @@NanduriSrivastav HI,thanks before, you still want to spare ur time to relief my comment.
      sure i can send email for the detail, but i was looking for ur emailed i dont found one,
      if you dont mind, could you please to inform ur email in here so i can send the detail to you right away

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

      Hi @srivastav need your email so i can send the detail with you, please

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

      Hi Erwin , did you get the chance to get the code ? I m looking for it also

  • @rain3458
    @rain3458 8 лет назад

    What if I want to change the design of the drop down list. Can I do that?

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Lorraine Salac no I'm sorry I don't know at least u can always play with visual basic thx

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Lorraine Salac no I'm sorry I don't know at least u can always play with visual basic thx

    • @Richard-lb4uq
      @Richard-lb4uq 8 лет назад

      +Lorraine Salac
      Hiya, yes you can, once you've placed the drop down, double click on it and then use the 'format' section to change the border, colours, etc. I would suggest using the drop down in a master page, thus making it easier to change.

  • @tigergamersc.official
    @tigergamersc.official Год назад

    i am using powerpoint 2010 but is not working

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

    doesn't work anymore

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

    Doesn't work for me... The list still remain void

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

    hola papu

  • @Romy357Rome
    @Romy357Rome 8 лет назад

    Can you copy and paste the code in your comment.

    • @NanduriSrivastav
      @NanduriSrivastav  8 лет назад

      +Jerome Kinzey I have already given that in the video description

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

    no se de ingles y no entendi nada

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

    Your code is wrong

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

    HOLI ME LLAMO EN ROBLOX GATOGATOCATCAT88

  • @saravjots
    @saravjots 7 лет назад

    Terrible Audio :(