Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Any Body can post applications related to
1. If condition
2. If Else condition
3. Nested If condition
Thanks,
Helen
Attached is a basic example.
Hope it helps.
Thanks
AJ
HI Ajay, help me to write in QV Scripting at Back End....
if(service_type==CPE)
{
SQL Select Stmt...
if(Value>0)
{
SQL select Stmt...
If (No data)
{
SQL select Stmt..
}
}
else
{
SQL select Stmt..
If (No data)
{
SQL select Stmt..
}
}
}
Thanks,
Helen
Hello,
Try this:
=if(service_type='CPE','st1',if(Value>0,'st2',if(isnull(Value),'st3',if(isnull(service_type),'st5','st4'))))
and provide sample data if it doesn't work.
Regards