Link to home
Start Free TrialLog in
Avatar of tkschultz1207
tkschultz1207

asked on

Copying values in a textbox from one excel workbook to a different workbook with VBA

I have a spreadsheet named a.xlsm which has several text boxes with data in it. I would like to copy the contents of the textboxes to another workbook named b.xlsm. So my steps are:

1) Copy data in textboxes from a.xlsm
2) open b.xlsm
3) find the next empty row in b.xlsm
4) copy data in textboxes from  a.xlsm to the next row in b.xlsm

I can't figure this out. Any help would be appreciated!
Avatar of OSUK
OSUK
Flag of United States of America image

Just to be clear are you referring to data in the cells or in textboxes embeded on the sheet?
Avatar of tkschultz1207
tkschultz1207

ASKER

from workbook a.xlsm I am copying data from a combination of  textboxes and cells on sheet1 to the next empty row of cells in workbook.b.xlsm
ASKER CERTIFIED SOLUTION
Avatar of OSUK
OSUK
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank You so much for your help!