Iterating Through Records - Crystal Reports 2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:03:05Z http://stackoverflow.com/feeds/question/335753 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335753/iterating-through-records-crystal-reports-2008 0 Iterating Through Records - Crystal Reports 2008 GregD 2008-12-02T22:54:22Z 2009-11-17T03:59:25Z <p>I need to know how to iterate through records in CR2008 and when it reaches a record that is NOT NULL, record that in a variable.</p> <p>I have a formula called "frmAccum" that I drop in the details section and suppress it. I use this to gather information for each record that's processed. I also have a formula called frmReset where I rest the stringvar "person_name" to "" and I can drop that in a Group header to reset after a grouping.</p> <p>When it comes across a person_name field that is NOT NULL and is not empty, I want it to retain the name in a variable to be used in the report header.</p> <p>So something like this:</p> <pre><code>stringvar person_name; whileprintingrecords; If ({Command.personname} &lt;&gt; "") Then person_name := {Command.personname} </code></pre> <p>I can't get this combination to work. Any help is appreciated.</p> http://stackoverflow.com/questions/335753/iterating-through-records-crystal-reports-2008/337411#337411 0 Answer by GregD for Iterating Through Records - Crystal Reports 2008 GregD 2008-12-03T15:00:45Z 2008-12-03T15:00:45Z <p>Well I didn't get a response and figured out how to modify my command, so that it put the name in all the fields in the column, so I can pull it now via Command.personname.</p> <p>If anyone comes back to read this and knows how to do this via Crystal syntax, it would be much appreciated.</p> http://stackoverflow.com/questions/335753/iterating-through-records-crystal-reports-2008/1746487#1746487 0 Answer by Craig for Iterating Through Records - Crystal Reports 2008 Craig 2009-11-17T03:59:25Z 2009-11-17T03:59:25Z <pre><code>whileprintingrecords; stringvar person_name; If Isnull({Command.personname}) Then person_name := {Command.personname} </code></pre>