if {condition 1}=0 then crYellow
else if {condition 2}=true then crred
else if {condition 3}=true || {condition 4}=true then crred
else crwhite;
bt still hving problm i.e. it satisfies I,II conditon bt didn't satisfy III and IV
pls help me out
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Madhu KPosted Dec 10, 2010, 7:36 AM
if(condition 1)=true
{ crYellow}
else if(condition 2)=true
{crRed}
else if(condition 3 || condition 4)=true
{crRed}
else{crWhite}
Pravin GhadgePosted Jan 4, 2011, 4:48 AM
I want to change background color of text object.
I have use foll .formula:
if{VP_Attendance.OT}='OT' then crblue
else if({VP_Attendance.EarlyGoing}='EARLY GOING')
then CRRED;
But in this condition only 'if' loop executed not 'else'
can u please help me what i have written wrong in 'if-else' loop
Pravin GhadgePosted Dec 10, 2010, 7:24 AM
There is no elseif condition
There is
if ......else condition only
In else u can give another if else condition