Still not working, this is what i have now
FORMULA FIELD GradeArray------
whileprintingrecords;
Global stringvar array GradeArray;
numbervar Counter;
if not (
{@Grade} in GradeArray) then
(Counter := Counter +1;
if Counter < 1000 then
(Redim Preserve GradeArray[Counter];
FORMULA FIELD Disclamier ---------
whileprintingrecords;
Global stringvar array GradeArray;
if "41S42" in
{@GradeArray} then
'Note: 4140 products are difficult to weld. If the 4140 products on this quote are for a welding application, a qualified weld engineer should be consulted.'
For grins I added a formula field in the footer with this code
whileprintingrecords;
Global stringvar array GradeArray;
join(GradeArray,",")
when i run the report I get
41S42,01025 from the formula, so why doesn't my "Note" line show up?