We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a number format like "0\ 0" is provided, the space in the middle is ignored.
Code:
let mut wb = new_file(); let sheet = wb.get_sheet_mut(&0).unwrap(); sheet.get_cell_mut("A1").set_value("12"); sheet.get_style_mut("A1") .get_number_format_mut() .set_format_code("#\\ #"); println!("{:#?}", sheet.get_formatted_value("A1"));
Expected Output: "1 2" Actual Output: "12"
I believe the problematic code is here:
umya-spreadsheet/src/helper/number_format.rs
Lines 444 to 454 in f53f841
The text was updated successfully, but these errors were encountered:
@Redfire75369 Thank you for contacting us. We will review the situation and correct it.
Sorry, something went wrong.
#230
5faa43c
@Redfire75369 Sorry, the process here is quite complex and will take time to correct.
No branches or pull requests
If a number format like "0\ 0" is provided, the space in the middle is ignored.
Code:
Expected Output: "1 2"
Actual Output: "12"
I believe the problematic code is here:
umya-spreadsheet/src/helper/number_format.rs
Lines 444 to 454 in f53f841
The text was updated successfully, but these errors were encountered: