How to generate report
Posted
by
user692495
on Stack Overflow
See other posts from Stack Overflow
or by user692495
Published on 2012-09-10T02:52:12Z
Indexed on
2012/09/10
3:38 UTC
Read the original article
Hit count: 108
vb.net
|crystal-reports-8.5
I have problem in generate report. I use crystal report 8.5 with vb.net 2008,what I want is when I generate report it will appear red value, if the value is more or less than actual value else it will give default value but when I put this code it give me wrong result
If {Intake.wheatType} = {Spec.WheatType} AND
{Intake.HB43} >={Spec.M_Min} AND{Intake.HB43} >={Spec.M_Max} Then
Red
Else
DefaultAttribute
this report is related with two tables, which is table Spec and table Intake. Could anyone help/teach me how to fix this problem
© Stack Overflow or respective owner