Normal Topic Q&A Translation (Read 2921 times)
Hunkulus
Member
*
Offline


No personal text

Posts: 12
Joined: Mar 15th, 2005
Q&A Translation
Mar 18th, 2005 at 6:15pm
Print Post Print Post  
I translated a Q&A db and some of my programming that worked fine in Q&A will not work in Sesame. Here is the code:  IF SIZE  >= 2 AND <= 5 THEN SAMPLESIZE = 2
          IF SIZE  >= 6 AND <= 12 THEN SAMPLESIZE = 4

What am I not seeing??
Hunkulus
  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Q&A Translation
Reply #1 - Mar 18th, 2005 at 6:20pm
Print Post Print Post  
Hello Hunkulus,

Try
Code
Select All
IF SIZE  >= 2 AND SIZE <= 5 THEN SAMPLESIZE = 2
IF SIZE  >= 6 AND SIZE <= 12 THEN SAMPLESIZE = 4 



-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Hunkulus
Member
*
Offline


No personal text

Posts: 12
Joined: Mar 15th, 2005
Re: Q&A Translation
Reply #2 - Mar 18th, 2005 at 7:20pm
Print Post Print Post  
Hi Ray

Like always you come trough. It works. Thanks.

Hunkulus
  
Back to top
 
IP Logged