Unable to paste cell value in input box while triggering VBA script

ravi123

New Member
Joined
Dec 25, 2015
Messages
11
Hi All,:)

I'm having a vba script wherein a pdf is being generated by providing account number through input box.
I'm coping a cell value (account number), triggering the vba script through keyboard shortcut, a input box appear and now I'm supposed to paste that copied cell value into input box, however it's not getting pasted. But if I paste cell value in sticky note or in notepad, and then again copy that, come back to script file, trigger the code and paste in input box and it's done.


Data (account number and other info) and VBA script is in same file.


Want to know what I'm doing wrong in first case.:confused: Why cell value is not getting pasted in input box straight from the script file? Is there a some sort of limitation or something else.:eek: In second senerio, code is working like charm.
Please help.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
You could use a variable to hold the value, something like this ...

Code:
Dim X As String, IBox as string
X = YourCell.Value
IBox = InputBox( "Mesage Text", "Title Text", X)
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,539
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top