ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   right function (https://www.excelbanter.com/excel-programming/299987-right-function.html)

Franck[_2_]

right function
 
how to use the right function with vba to remove the last caracter of the
data of my colums

thanks



Tom Ogilvy

right function
 
You wouldn't use Right. You would use left

lCol = 2
for each cell in Range(Cells(1,lCol),Cells(rows.count,lCol).End(xlu p))
cell.Value = Left(Cell.Value,len(Cell.Value)-1)
Next

--
Regards,
Tom Ogilvy


"Franck" wrote in message
...
how to use the right function with vba to remove the last caracter of the
data of my colums

thanks





Frank Kabel

right function
 
Hi
use left. e.g.
with activecell
.value=left(.value,len(.value)-1)
end with

--
Regards
Frank Kabel
Frankfurt, Germany


Franck wrote:
how to use the right function with vba to remove the last caracter of
the data of my colums

thanks



Bob Phillips[_6_]

right function
 
or even Mid

for each cell in Range(Cells(1,lCol),Cells(Rows.Count,lCol).End(xlu p))
cell.Value = Mid(cell.Value,1,Len(cell.Value)-1)
Next

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Tom Ogilvy" wrote in message
...
You wouldn't use Right. You would use left

lCol = 2
for each cell in Range(Cells(1,lCol),Cells(rows.count,lCol).End(xlu p))
cell.Value = Left(Cell.Value,len(Cell.Value)-1)
Next

--
Regards,
Tom Ogilvy


"Franck" wrote in message
...
how to use the right function with vba to remove the last caracter of

the
data of my colums

thanks







Franck[_2_]

right function
 
Thanks to all




"Franck" a écrit dans le message de
...
how to use the right function with vba to remove the last caracter of the
data of my colums

thanks






All times are GMT +1. The time now is 05:28 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com