Replace dot with commas

  • Thread starter Thread starter banavas
  • Start date Start date
B

banavas

Dear Friends,

does any of you has any piece of VB code that replaces dots with comma
in a txt file?

Thank you,
G
 
Banavas,

Hi.

A simple macro will do it.

'change selection to suit

Columns("C:C").Select
Selection.Replace What:=".", Replacement:=",", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False
_
ReplaceFormat:=False



cheers
Koal
 

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