Yes, the variable is calculated in the detail section, in my variable list.  If 
I do the eep after the detail section, and the checkbox is in the detail 
section, isn't it too late?Patti

      From: Buddy Walker <[email protected]>
 To: [email protected] 
 Sent: Monday, October 3, 2016 11:07 AM
 Subject: RE: [RBASE-L] - Check boxes on reports
   
#yiv3813215053 #yiv3813215053 -- _filtered #yiv3813215053 {panose-1:2 4 5 3 5 4 
6 3 2 4;} _filtered #yiv3813215053 {font-family:Calibri;panose-1:2 15 5 2 2 2 4 
3 2 4;} _filtered #yiv3813215053 {font-family:HelveticaNeue;panose-1:0 0 0 0 0 
0 0 0 0 0;}#yiv3813215053 #yiv3813215053 p.yiv3813215053MsoNormal, 
#yiv3813215053 li.yiv3813215053MsoNormal, #yiv3813215053 
div.yiv3813215053MsoNormal 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;}#yiv3813215053 a:link, 
#yiv3813215053 span.yiv3813215053MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv3813215053 a:visited, #yiv3813215053 
span.yiv3813215053MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv3813215053 p 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
p.yiv3813215053msonormal0, #yiv3813215053 li.yiv3813215053msonormal0, 
#yiv3813215053 div.yiv3813215053msonormal0 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
p.yiv3813215053msonormal0, #yiv3813215053 li.yiv3813215053msonormal0, 
#yiv3813215053 div.yiv3813215053msonormal0 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
p.yiv3813215053msonormal, #yiv3813215053 li.yiv3813215053msonormal, 
#yiv3813215053 div.yiv3813215053msonormal 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
p.yiv3813215053msochpdefault, #yiv3813215053 li.yiv3813215053msochpdefault, 
#yiv3813215053 div.yiv3813215053msochpdefault 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
span.yiv3813215053msohyperlink {}#yiv3813215053 
span.yiv3813215053msohyperlinkfollowed {}#yiv3813215053 
span.yiv3813215053emailstyle19 {}#yiv3813215053 p.yiv3813215053msonormal1, 
#yiv3813215053 li.yiv3813215053msonormal1, #yiv3813215053 
div.yiv3813215053msonormal1 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;}#yiv3813215053 
span.yiv3813215053msohyperlink1 
{color:blue;text-decoration:underline;}#yiv3813215053 
span.yiv3813215053msohyperlinkfollowed1 
{color:purple;text-decoration:underline;}#yiv3813215053 
p.yiv3813215053msonormal01, #yiv3813215053 li.yiv3813215053msonormal01, 
#yiv3813215053 div.yiv3813215053msonormal01 
{margin-right:0in;margin-left:0in;font-size:12.0pt;}#yiv3813215053 
span.yiv3813215053emailstyle191 {color:windowtext;}#yiv3813215053 
p.yiv3813215053msochpdefault1, #yiv3813215053 li.yiv3813215053msochpdefault1, 
#yiv3813215053 div.yiv3813215053msochpdefault1 
{margin-right:0in;margin-left:0in;font-size:10.0pt;}#yiv3813215053 
span.yiv3813215053EmailStyle31 {color:windowtext;}#yiv3813215053 
.yiv3813215053MsoChpDefault {font-size:10.0pt;} _filtered #yiv3813215053 
{margin:1.0in 1.0in 1.0in 1.0in;}#yiv3813215053 div.yiv3813215053WordSection1 
{}#yiv3813215053 Patti  Is your variable being calculated in the detail band. 
If so and then the eep needs to be in the after detail band  BuddyFrom: 'Patti 
Jakusz' via RBASE-L [mailto:[email protected]] 
Sent: Monday, October 3, 2016 11:01 AM
To: [email protected]
Subject: Re: [RBASE-L] - Check boxes on reports  Hi Buddy,I was not able to get 
this to work.  Not sure what I did wrong.    I put this in the eep that 
generates before the band.  (BTW, I never knew you could do a band-specific eep 
before.)  if vGetUHome is null then  property CIGetUHome CHECKED 'FALSE'else  
property CIGetUHome CHECKED 'TRUE'endif  return  I placed the variable on the 
report so I could see if the variable was working right, and it is.   
PattiFrom: Buddy Walker <[email protected]>
To: [email protected] 
Sent: Thursday, September 29, 2016 1:50 PM
Subject: RE: [RBASE-L] - Check boxes on reports  Patti  I’ve used the variable 
checkboxes in the past and the way I had it working was on the on before 
generate detail band (assuming you have the check box in the detail band) 
create the if statements that will check the variable.    IF varName IS NULL 
THEN       PROPERTY chkboxComponetID CHECKED ‘FALSE’   ELSE      PROPERTY 
chkboxComponetID CHECKED ‘TRUE’  ENDIF Buddy  From: 'Patti Jakusz' via RBASE-L 
[mailto:[email protected]] 
Sent: Thursday, September 29, 2016 1:23 PM
To: RBASE-L Mailing List <[email protected]>; [email protected]
Subject: [RBASE-L] - Check boxes on reports Hello, I'm using check boxes for 
the first time on a report in Rbase 9.5 - both Database check boxes and 
Variable check boxes.  I was kind of expecting that if my database column or 
variable was null, the box would be blank and if it had data in it, there would 
be a checkmark in my checkbox.  But that doesn't seem to be happening - all I 
get are blank boxes.  Exactly what makes the checkmark appear in the box? 
Thanks,Patti-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.  -- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.


   

-- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to