Hi ballardw,
I apologize for not adding example data. I should have created a temp version of my table that the code could run against.
I was able to correct this issue this morning. Since there are 3 cells in the data portion and only 1 cell in the heading row it was causes the column headings and data not to line up. Once I added 2 blank cells it corrected the issue I was having.
if id=1 then do ;
obj.row_start() ;
obj.format_cell(text: "&heading.", overrides: "height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.format_cell(text: '', overrides: "indent=40 height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.format_cell(text: '', overrides: "indent=40 height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.row_end() ;
obj.row_start() ;
obj.format_cell(text: 'Varnum', overrides: "indent=40 height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.format_cell(text: 'Name', overrides: "indent=40 height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.format_cell(text: 'Label', overrides: "indent=40 height=.06in backgroundcolor=white just=left font_face='Courier New' fontweight=bold") ;
obj.row_end() ;
end ;
... View more