Spaces betwwen names in combo list
Closed
Mary
-
Jun 20, 2010 at 09:49 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 22, 2010 at 10:58 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 22, 2010 at 10:58 PM
Related:
- Spaces betwwen names in combo list
- My contacts list names - Guide
- Count names in excel - Guide
- Amd crossfire gpu list - Guide
- Counter strike 1.6 cheats list - Guide
- How to forward images to broadcast list in whatsapp - WhatsApp Forum
3 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 21, 2010 at 05:29 AM
Jun 21, 2010 at 05:29 AM
i dont think it can be done like that. you would need a macro or sort data.
Hi, Do you have an idea how can I do that for my sheet.
I really would appreciate any help you can provide me
I really would appreciate any help you can provide me
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 22, 2010 at 10:58 PM
Jun 22, 2010 at 10:58 PM
Try this
1. Open book
2. Press ALT + F11 to get into VBE
3. Press CTRL + R to launch Project Explorer
4. Double click on sheet where you have this data
5. Paste code
1. Open book
2. Press ALT + F11 to get into VBE
3. Press CTRL + R to launch Project Explorer
4. Double click on sheet where you have this data
5. Paste code
Private Sub Worksheet_Change(ByVal Target As Range)
Dim lRow As Long
On Error GoTo Error_Handler
If (Intersect(Target, Range("C:E")) Is Nothing) Then GoTo End_Sub
Application.EnableEvents = False
Range(Cells(2, "L"), Cells(Rows.Count, "L").End(xlUp)).Clear
For lRow = 2 To Cells(Rows.Count, "C").End(xlUp).Row
If (Cells(lRow, "F") = "ACTIVE") Then
Cells(Rows.Count, "L").End(xlUp).Offset(1, 0) = Cells(lRow, "C")
End If
Next lRow
End_Sub:
Application.EnableEvents = True
Exit Sub
Error_Handler:
MsgBox Err.Description
GoTo End_Sub
End Sub