Jump to content
Fórum Script Brasil
  • 0

Somar Variáveis


pchardnet

Question

'................................. CONFIGURAÇÃO DOS VALORES DE CADA CURSO
If strcurso = "Graduação" then
strvalor= "70,00"
end if
'................................. CONFIGURAÇÃO DA TAXA DO BANCO
strtaxa = "1,90" ' Define taxa a ser cobrada pelo banco (LINHA 411)
'................................. VALOR TOTAL DO BLOQUETO (não alterar)
vtotal = strvalor + strtaxa

A variável vtotal está recebendo 70,001,90 ao invés de 71,90

Usando a função Ccur

Porém o meu resultado fica assim: 71,9

Como corrijo isso??

Obrigado!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

If strcurso = "Graduação" then

strvalor= "70,00"

end if

'................................. CONFIGURAÇÃO DA TAXA DO BANCO

strtaxa = "1,90" ' Define taxa a ser cobrada pelo banco (LINHA 411)

'................................. VALOR TOTAL DO BLOQUETO (não alterar)

vtotal = strvalor + strtaxa

você esta somando strings e não um valor numérico.

tente deixar sua váriavel assim:

If strcurso = "Graduação" then

strvalor= 70.00

end if

'................................. CONFIGURAÇÃO DA TAXA DO BANCO

strtaxa = 1.90 ' Define taxa a ser cobrada pelo banco (LINHA 411)

'................................. VALOR TOTAL DO BLOQUETO (não alterar)

vtotal = strvalor + strtaxa

desta forma vtotal será : 71,9

Link to comment
Share on other sites

  • 0

Ok, consegui resolver

'................................. CONFIGURAÇÃO DOS VALORES DE CADA CURSO
If strcurso = "Graduação" then
strvalor= 70.00
elseif strcurso="Pós-Graduação" then
strvalor= 120.00
elseif strcurso="Manutenção Preditiva" then
strvalor= 117.00
end if

'................................. CONFIGURAÇÃO DA TAXA DO BANCO
strtaxa = formatnumber(1.90) ' Define taxa a ser cobrada pelo banco 

'................................. VALOR TOTAL DO BLOQUETO (não alterar)
v = strvalor +  strtaxa
vtotal = formatnumber(v)

Response.write (formatnumber(vtotal))

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...