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 am working on a gem to parse and edit spreadsheets that might contain date and currency cells of any currency (the spreadsheets are from this project: https://aspirebudget.com/). Instead of having to do the hard work of parsing the strings (or calling #numeric_value on each one of them), I want to be able to to have a rows-like method returning only the numeric values (where they apply).
I opened #377 which has a proof of concept of it, adding a couple new the methods to Worksheet: one that should return the rows normally but replacing the numeric_values where they exist (with the notable exception of dirty cells) and one that will return the input_values instead.
Let me know your thoughts :)
The text was updated successfully, but these errors were encountered:
I am working on a gem to parse and edit spreadsheets that might contain date and currency cells of any currency (the spreadsheets are from this project: https://aspirebudget.com/). Instead of having to do the hard work of parsing the strings (or calling
#numeric_value
on each one of them), I want to be able to to have a rows-like method returning only the numeric values (where they apply).I opened #377 which has a proof of concept of it, adding a couple new the methods to
Worksheet
: one that should return therows
normally but replacing thenumeric_value
s where they exist (with the notable exception of dirty cells) and one that will return theinput_value
s instead.Let me know your thoughts :)
The text was updated successfully, but these errors were encountered: