hi all,
i have a small issue in my report Export to excel code is there it's work fine.
here comment is text variable and i want to export this comment to excel and i write the code is
IF ExportToExcel THEN BEGIN
i+=1;
EnterCell(i,6,Comment,FALSE,FALSE,'');
END;
This is also works fine but i want to display Two spaces in front of Comment in Excel.
how can i done this one i tried as
CommentG:=' '+Comment;
IF ExportToExcel THEN BEGIN
i+=1;
EnterCell(i,6,CommentG,FALSE,FALSE,'');
END;
but it's not working can any suggest me please........
Regards,
Ramesh.
*This post is locked for comments