| T O P I C    R E V I E W | 
              
                | juannim | Posted - 10/30/2007 : 6:21:06 PM Origin Version (Select Help-->About Origin): 7.5
 Operating System:xp
 I have 51 columns of data, from three replicates of 17 measurements.  Columns are named as such:
 290a 290b 290c 300a 300b 300c 310a 310b 310c
 
 In some cases, however, one of the letters might be missing- e.g.
 290a 290b 290c 300b 300c
 
 I need to average all of the 290 columns, all of the 300's, etc.
 How can I check to see if a column exists to modify the averaging loop to move on if there is a missing column?  Jonathan
 | 
              
                | 3   L A T E S T    R E P L I E S    (Newest First) | 
              
                | Mike Buess | Posted - 10/31/2007 : 12:47:18 PM 
 quote:>0 means greater than zero.What is the meaning of the >0 in the script?
 
 
 As written, the value of exist() function returns zero if dataset Data1_290c does not exist. If dataset exists the function returns a positive value that depends on if and how it's plotted.
 
 Mike Buess
 Origin WebRing Member
 | 
              
                | juannim | Posted - 10/31/2007 : 09:27:09 AM Mike,
 Thanks for your help, as usual.  What is the meaning of the >0 in the script?  Thanks.  Jonathan
 | 
              
                | Mike Buess | Posted - 10/30/2007 : 8:44:43 PM Use LabTalk's exist() function...
 
 if( exist(Data1_290c,1)>0 ) {column 290c exists in worksheet Data1 so do something};
 else {it does not exist so skip};
 
 Mike Buess
 Origin WebRing Member
 
 Edited by - Mike Buess on 10/30/2007  9:20:31 PM
 |