Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"Melanie Breden" wrote in message ...
Hi Daniel, Daniel wrote: I need to search 1 column ( say A ) and find the last cell. From there i want to step five cells back, copy every value for each on and paste them into a specific textbox i have in a userform. if I understand you correctly, are the 5 last values of the column A to be transferred into *one* textbox? Place the MultiSelect-characteristic of the textbox on True, in order to arrange the values one below the other: Private Sub CommandButton1_Click() Dim lngRow As Long Dim rngArea As Range Dim intI As Integer lngRow = Worksheets(1).Cells(Rows.Count, "A").End(xlUp).Row - 4 Set rngArea = Worksheets(1).Cells(lngRow, "A").Resize(5, 1) For intI = 1 To rngArea.Cells.Count TextBox1.Text = TextBox1.Text & IIf(TextBox1.Text = "", "", vbCr) _ & rngArea.Cells(intI) Next intI End Sub Thanks for all yor help, finally i can continue! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search adjacent cells in Column for sequence | Excel Worksheet Functions | |||
LookUp Function with Two Column Search Returning One Column Value | Excel Worksheet Functions | |||
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look | Excel Discussion (Misc queries) | |||
search column of text cellto identify those cells with specific w | Excel Worksheet Functions | |||
Fast way to search many cells by column for text strings | Excel Discussion (Misc queries) |