hello evryone
i m using this code to select range and display in textbox1
select ragne = (c10:c15)
textbox1.value = (10:15)
But if i copy range = (c10:c15)![]()
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim myRange As Range Set myRange = Selection SID_EXTRA.TextBox1.Value = Target.EntireRow.Address(0, 0) End Sub
and paste on other sheet = (c10:c15)
then
textbox1 show only
textbox1.value = 10
i need result if i copy and paste a ragne
textbox1.value = 10:15
thanx
Bookmarks