Hi There, I am aware of How to Enter Data from Keyboard using a Macro such as
But I wanted to use this Variable value and print in a Slide
For example say I wanted to Display the time as
"The time is : " & Time
in Slide 5 How can I do this ?
Thanks in advance,
Genny
Code:
Sub Test()
Dim Time As Integer
Time = InputBox("Enter the Time")
MsgBox (Time)
End Sub
For example say I wanted to Display the time as
"The time is : " & Time
in Slide 5 How can I do this ?
Thanks in advance,
Genny