Aug 24, 2010 #1 tr5ad Technical User Jul 1, 2009 2 GB Hi, I am trying to create a array that can store the values of a field in the details section for each record. Example ID Field 1 ab 2 cd 3 ef I would like to store all the field information in a array (ab,cd,ef) Any Ideas?? Thanks
Hi, I am trying to create a array that can store the values of a field in the details section for each record. Example ID Field 1 ab 2 cd 3 ef I would like to store all the field information in a array (ab,cd,ef) Any Ideas?? Thanks
Aug 24, 2010 #2 IanWaterman Programmer Jun 26, 2002 3,511 GB Create 3 formula @reset // Place this ID group Header whileprintingrecords; global stringvar list:= '' @Eval //Place in details & suppress details section whileprintingrecords; global stringvar list:= list&', '*{yourstringfield}; @Display // place in ID group footer whileprintingrecords; global stringvar list; Ian Upvote 0 Downvote
Create 3 formula @reset // Place this ID group Header whileprintingrecords; global stringvar list:= '' @Eval //Place in details & suppress details section whileprintingrecords; global stringvar list:= list&', '*{yourstringfield}; @Display // place in ID group footer whileprintingrecords; global stringvar list; Ian
Aug 24, 2010 #3 lbass Technical User Feb 9, 2002 32,816 US You are posting in an incorrect forum. In the future, please try forum149 or forum767. -LB Upvote 0 Downvote
Aug 24, 2010 Thread starter #4 tr5ad Technical User Jul 1, 2009 2 GB Don't know why I didn't think of this was a bit obsessed with trying to use an array, thanks Upvote 0 Downvote