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
The PrintCol() function does this for columns >= 26:
fPrintColBuf[0] = 'A' + col / 26;
fPrintColBuf[1] = 'A' + col % 26;
fPrintColBuf[2] = '\0';
This jumps from "Z" to "BA" instead of "AA". It should actually be 'A' + col / 26 - 1.
Also, strings output for token=0xff should be wrapped in double quotes. The ellipsis token ($fc) should be ".." for denoting ranges in modern spreadsheets.
The text was updated successfully, but these errors were encountered:
The PrintCol() function does this for columns >= 26:
This jumps from "Z" to "BA" instead of "AA". It should actually be
'A' + col / 26 - 1
.Also, strings output for token=0xff should be wrapped in double quotes. The ellipsis token ($fc) should be ".." for denoting ranges in modern spreadsheets.
The text was updated successfully, but these errors were encountered: