Figured it out. It did not like my 'rowstyle' compute block. I replaced it with this and now I get what I wanted. if index(rowstyle,'DOUBLE') gt 0 and index(rowstyle,'BOLD') gt 0 then call define(_row_,"Style", "STYLE=[borderbottomstyle=double fontweight=bold]"); else if index(rowstyle,'DOUBLE') gt 0 then call define(_row_,"Style", "STYLE=[borderbottomstyle=double fontweight=normal]"); else if index(rowstyle,'BOLD') gt 0 then call define(_row_,"Style", "STYLE=[borderbottomstyle=hidden fontweight=bold]"); else call define(_row_,"Style", "STYLE=[borderbottomstyle=hidden fontweight=normal]");
... View more