APROVEITE, MELHORE OU COMENTE

LIONHEART 24/11/2006 10:39:39
#186100
pq não usa o cDbl(?) ?

valor = cdbl("1.200,50")

e pronto...

boiei no problema
USUARIO.EXCLUIDOS 24/11/2006 10:53:50
#186109
Citação:

LIONHEART escreveu:
pq não usa o cDbl(?) ?

valor = cdbl([Ô]1.200,50[Ô])

e pronto...

boiei no problema



[S57] Quem boiou fui eu. NUNCA imaginei que o CDBL pudesse tratar a formatação de modo diferente do VAL.

Essa é a resposta correta.

Vivendo e aprendendo!

Obrigado, VALEU! [S67]

P.S. - Desculpem a vergonha que passei...
WEBMASTER 24/11/2006 11:08:39
#186117
Pra quem usa access o dia inteiro (como eu) a função NZ é extremamente necessária e por isso eu fiz um sinà'nimo dela para ASP (e que obviamente funciona para VBA) que me atende 100%

Public Function NZ(sTextToConvert)
if isnull(sTextToConvert) then
NZ = 0
exit function
end if

if isempty(sTextToConvert) then
NZ = 0
exit function
end if

if not isnull(sTextToConvert) and not(isempty(sTextToConvert)) then
sTextToConvert = replace(sTextToConvert, " ", "")
if isnumeric(sTextToConvert) then
NZ = sTextToConvert
else
NZ = 0
end if
else
NZ = 0
end if
end Function


Página 2 de 2 [13 registro(s)]
Tópico encerrado , respostas não são mais permitidas