ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   VBA Help Required - Copying details from ComboBox onto worksheet (https://www.excelbanter.com/excel-programming/307984-vba-help-required-copying-details-combobox-onto-worksheet.html)

Alan T[_4_]

VBA Help Required - Copying details from ComboBox onto worksheet
 
How do I copy the detail from a ComboBox on a UserForm onto a worksheet


On a previous project I had the following code to copy a value from
cell on one worksheet to a a cell on another

'Colleague Initials
Sheets("Call Logging Tool").Range("j8").Copy _
Sheets("Call Statistics").Range("c65536").End(xlUp).Offset(1, 0)

Can this be amended to carry out what I need

--
Message posted from http://www.ExcelForum.com


Ron de Bruin

VBA Help Required - Copying details from ComboBox onto worksheet
 
Try this

Sheets("Sheet1").Range("A1").Value = Combobox1.Value


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Alan T " wrote in message ...
How do I copy the detail from a ComboBox on a UserForm onto a worksheet?


On a previous project I had the following code to copy a value from a
cell on one worksheet to a a cell on another

'Colleague Initials
Sheets("Call Logging Tool").Range("j8").Copy _
Sheets("Call Statistics").Range("c65536").End(xlUp).Offset(1, 0)

Can this be amended to carry out what I need?


---
Message posted from http://www.ExcelForum.com/





All times are GMT +1. The time now is 01:07 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com