-
-
Notifications
You must be signed in to change notification settings - Fork 281
Description
Splitwise offers an "Export as spreadsheet" feature. It would be useful to be able to import this data into Spliit for continuity of groups that were created before.
Splitwise exports CSV files with the following headers:
Date | Description | Category | Cost | Currency | UserA | UserB | ... |
---|
Values in the User columns are calculated as (Paid - Owe). For example, if UserA paid $100 for an item whose cost was split evenly, UserA's entry would be $100 - $50 = $50 and UserB's would be $0 - $50 = -$50.
Date | Description | Category | Cost | Currency | UserA | UserB |
---|---|---|---|---|---|---|
2024-01-01 | Something | General | 100.00 | USD | 50.00 | -50.00 |
The final row is the total balance per user, which is the column sum for that user. There is no need to import this, but for the record, a positive value represents that the user "gets back" some amount, whereas a negative value represents that the user "owes" the amount.
This would require #6, at least the ability to split unevenly by dollar amount.
I'd suggest matching users by column name and error if a match isn't found; it's very easy to edit the CSV file if the name needs to be changed, no need to create new UI for it.