Hola Amigos de Foros del Web Tengo una Duda sobre el Crystal Report no traba con 2 en una sola formula
por ejemplo :
if IsNull ({@ComporNotaB1C2}) and IsNull ({@ComporNotaB1C3}) then
x := round(({@ComporNotaB1C2} + {@ComporNotaB1C2} + {@ComporNotaB1 C3}
if x = 1 then
Prome := "A"
else if x = 2 then
Prome := "B"
else if x = 3 then
Prome := "C"
en esta linea if x = 1 then
me marca que el texto parece no ser parte de la formula .
probe con añadiendo parentesis ( ) pero me da lo mismo
if IsNull ({@ComporNotaB1C2}) and IsNull ({@ComporNotaB1C3}) then
(
x := round(({@ComporNotaB1C2} + {@ComporNotaB1C2} + {@ComporNotaB1 C3}
if x = 1 then
Prome := "A"
else if x = 2 then
Prome := "B"
else if x = 3 then
Prome := "C"
)
Gracias de Antemano ..!!!