cs_fabiano13
Messages postés261Date d'inscriptionmardi 26 février 2002StatutMembreDernière intervention27 février 2012
-
22 janv. 2007 à 16:27
cs_fabiano13
Messages postés261Date d'inscriptionmardi 26 février 2002StatutMembreDernière intervention27 février 2012
-
23 janv. 2007 à 14:10
J'ai un petit doute sur ma fonction qui devrait calculer le pourcentage d'augmentation de 2 valeurs. Quelqu'un peu vérifier ?
Function CalPourcAugmentation(avant, apres)
if(avant=apres)then
CalPourcAugmentation = 0 & "%"
exit function
else
CalPourcAugmentation = int((((apres-avant)/avant)*100)*100)/100 & "%"
end if
End Function