You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suspect this is a bug, but I can't figure it out so would be grateful for any insight:
When using the "export_as_pdf()" function with pagination = TRUE, if the first row of a new page in a disp_cols() variable is blank, the listing instead carries over the last printed value from that variable in the first row. Just to be clear, that's problematic in our usage because it makes it appear there is data occurring where it should not be.
I confirmed this occurs within pagination of key_col() variables. In our case, when grouping by Subject ID as a key_col(), the data is carried over on the first row only when paginating within that Subject ID. When a new Subject ID begins on the first row of a new page, the last printed display_col() value is not carried over even if the first row is blank (which is the behavior we wish to see for all pages).
I tried not defining any key_col(), but I still see display_col() values carried over to fill blank first rows after pagination.
The text was updated successfully, but these errors were encountered:
For a bit more context, I confirmed that the carryover of data only occurs in the case of pagination with export_as_pdf(). When creating the listing itself by as_listing(), blank cells in rows are displayed as intended.
It appears the issue is resolved by replacing absolute empty values "" with a real space " ". I tried it first with a period ".", and that fixed it as well.
It appears the issue is resolved by replacing absolute empty values "" with a real space " ". I tried it first with a period ".", and that fixed it as well.
It appears the issue is resolved by replacing absolute empty values "" with a real space " ". I tried it first with a period ".", and that fixed it as well.
I suspect this is a bug, but I can't figure it out so would be grateful for any insight:
When using the "export_as_pdf()" function with pagination = TRUE, if the first row of a new page in a disp_cols() variable is blank, the listing instead carries over the last printed value from that variable in the first row. Just to be clear, that's problematic in our usage because it makes it appear there is data occurring where it should not be.
I confirmed this occurs within pagination of key_col() variables. In our case, when grouping by Subject ID as a key_col(), the data is carried over on the first row only when paginating within that Subject ID. When a new Subject ID begins on the first row of a new page, the last printed display_col() value is not carried over even if the first row is blank (which is the behavior we wish to see for all pages).
I tried not defining any key_col(), but I still see display_col() values carried over to fill blank first rows after pagination.
The text was updated successfully, but these errors were encountered: