
03/10/2008, 09:16
|
| | Fecha de Ingreso: septiembre-2008
Mensajes: 17
Antigüedad: 16 años, 7 meses Puntos: 0 | |
Manejo con mas de 2 varibles en Crystal Report x.xx Hola Maestro del Web.. !!
mi duda es la siguiente:
en una funcion que variable me devuleve como resultado final si trabajo mas de 2 variables en Crystal Report por ejemplo
// A=1 : B=2 : C=3 : D=4
// solo esta calificando con " A B C "
el codigo es el siguiente
stringVar Prome := "";
numberVar x := 0 ;
else if IsNull ({@ComporNotaB1C1}) and IsNull ({@ComporNotaB1C2}) then
(
x := round(({DataE_BoletaInformacionIII.Comport_B1C1} + {DataE_BoletaInformacionIII.Comport_B1C2})/2)
if x = 1 then
(
Prome := "A"
else if x = 2 then
Prome := "B"
else if x = 3 then
Prome := "C"
)
)
me da error me dice que falta ).
Gracias de antemano... |