right function

  • Thread starter Thread starter Franck
  • Start date Start date
F

Franck

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

thanks
 
You wouldn't use Right. You would use left

lCol = 2
for each cell in Range(Cells(1,lCol),Cells(rows.count,lCol).End(xlup))
cell.Value = Left(Cell.Value,len(Cell.Value)-1)
Next
 
Hi
use left. e.g.
with activecell
.value=left(.value,len(.value)-1)
end with
 
or even Mid

for each cell in Range(Cells(1,lCol),Cells(Rows.Count,lCol).End(xlup))
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top