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
Reading data containing ampersands ("&") results in the ampersand being read as "&". This only seems to happen when the file is read from disk. Might also affect other special characters.
library(openxlsx2)
wb<- wb_workbook()$add_worksheet("Test")$add_data(dims="A1", x="A & B")$save("ampersand.xlsx")
read_xlsx(wb, sheet="Test")
# A & B
read_xlsx("ampersand.xlsx", sheet="Test")
# A & B
The text was updated successfully, but these errors were encountered:
Reading data containing ampersands ("&") results in the ampersand being read as "&". This only seems to happen when the file is read from disk. Might also affect other special characters.
The text was updated successfully, but these errors were encountered: