PDA

View Full Version : Copy textbox text to other slide



Dumbledorf
12-01-2020, 02:08 AM
Hi all,

first of all, I'm totally new to VBA and using powerpoint macros.
So I have a textbox on slide 1 and what I need, is that name moves to slide 2 textbox after you press a button.

I have managed to make it work in 1 slide with this macro:

Private Sub CommandButton1_Click()
Label1.Caption = TextBox1.Text
End Sub

but, I dont know how to make it appear in different slide.

Thanks for help!