Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need a VB macro that will remove the left most character in all cases.
Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To provide a generic answer, assuming you wanted to do this for A1 in Sheet1
With Sheet1.Range("A1") .Value = Mid(.Text, 2) End with "Troubled User" wrote: I need a VB macro that will remove the left most character in all cases. Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this for the activecell
ActiveCell.Value = Right(ActiveCell.Value, Len(ActiveCell.Value) - 1) -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Troubled User" wrote in message ... I need a VB macro that will remove the left most character in all cases. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Returning left part of cell before a character | Excel Discussion (Misc queries) | |||
Get characters on left of specified character in Excel | Excel Discussion (Misc queries) | |||
Test left character is a number? | Excel Discussion (Misc queries) | |||
Text to the left and right of a character | Excel Worksheet Functions | |||
Limit character count in cell from left | Excel Discussion (Misc queries) |