Jump to content

Trips

Members
  • Last visited

  • Posts

    8
  • Reputation

    0
  1. I’ve got Ubuntu installed in a VM so I can test out my apps. My favorite distro for sure.
  2. Do many people still use Windows 10? Be an interesting topic to talk about.
  3. Hello all. I’m Trips. Real name Cody. Been a while since I’ve visited. Never posted an introduction so here it is.
  4. Big performance boost. We use VM for our IT department. All development is done on a cluster.
  5. Trips changed their profile photo
  6. WOW is all I can say. Guess our stuff just isn’t secure.
  7. Trips posted a post in a topic in Announcements
    I love it. It’s been a while since I’ve visited. Things are so much better organized.
  8. You can try this: VBA Code ExampleSub ChangeToMixedCase() Dim cell As Range Dim ws As Worksheet ' Set the worksheet you want to work with Set ws = ThisWorkbook.Sheets("Sheet1") ' Change "Sheet1" to your sheet name ' Loop through each cell in column A (adjust the range as needed) For Each cell In ws.Range("A1:A" & ws.Cells(ws.Rows.Count, "A").End(xlUp).Row) If Not IsEmpty(cell.Value) Then cell.Value = Application.WorksheetFunction.Proper(cell.Value) End If Next cell MsgBox "Column A has been changed to mixed case." End Sub Instructions to Use the CodeOpen Excel and press ALT + F11 to open the VBA editor. In the VBA editor, go to Insert > Module to create a new module. Copy and paste the above code into the module window. Change "Sheet1" to the name of your worksheet if necessary. Press F5 to run the code or close the VBA editor and run it from Excel. What This Code DoesIt loops through each cell in column A. It checks if the cell is not empty. It converts the text in the cell to proper case (first letter of each word capitalized). A message box will pop up indicating that the process is complete. Let me know if this helps.