Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to go through all cells in Column A and add "/", without the
quotes, at the end of the text. However if there is already a slash. "/", at the end then i do not want to add anything. so i would like my cells to look like: google.com/ yahoo.com/ aol.com/ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Shani,
try: Sub AddSlash() For Each cell In Range("A:A") If Right$(cell, 1) < "/" Then cell.Value = cell.Value & "/" End If Next End Sub Note that this will go through ALL cells in col A, including blank entries (which will become "/"). If you've got limited entries following by thousands of blank cells, then either reduce the range to a specific (e.g. A:A change to A2:A100) or use a Do Until cell = "" loop rather than a For...Next. If you expect blanks with your range and want to leave them blank, add an extra condition around the code to only run if cell < "" HTH DS "Shani" wrote: I want to go through all cells in Column A and add "/", without the quotes, at the end of the text. However if there is already a slash. "/", at the end then i do not want to add anything. so i would like my cells to look like: google.com/ yahoo.com/ aol.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I add additional text in many cells | Excel Discussion (Misc queries) | |||
Additional Help with range of cells | Excel Worksheet Functions | |||
Inserting Additional Text in Spreadsheet | Excel Worksheet Functions | |||
Need your help. I need to add additional information into cells | Excel Programming | |||
How to input additional text to multiple of existing cells that has text | Excel Worksheet Functions |