VBA question

P

PeCoNe

Cell A52 contains the text:

AEX*: 352,54 +1,65 +0,47% O: 351,84 H: 352,66 L: 351,84 C: 350,89

How can i substitute "," by "." in VBA

SUBSTITUTE(A52,",",".") does not work
 
C

Claus Busch

Hi,

Am Mon, 21 Jan 2013 14:40:42 +0100 schrieb PeCoNe:
Cell A52 contains the text:

AEX*: 352,54 +1,65 +0,47% O: 351,84 H: 352,66 L: 351,84 C: 350,89

How can i substitute "," by "." in VBA

SUBSTITUTE(A52,",",".") does not work

try Replace


Regards
Claus Busch
 
R

Ron Rosenfeld

Cell A52 contains the text:

AEX*: 352,54 +1,65 +0,47% O: 351,84 H: 352,66 L: 351,84 C: 350,89

How can i substitute "," by "." in VBA

SUBSTITUTE(A52,",",".") does not work

worksheetfunction.substitute( ...

or

replace
 

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

Top