| layout | page |
|---|---|
| title | User Guide |
Expense Expert is a desktop app for keeping track of your expenses, and managing your budget, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast, Expense Expert can get your expense management done faster than traditional GUI apps.
- Table of Contents {:toc}
-
Ensure you have Java
11or above installed in your Computer. -
Download the latest
ExpenseExpert.jarfrom here. -
Copy the file to the folder you want to use as the home folder for your Expense Expert.
-
Double-click the file to start the app. The GUI similar to the below should appear in a few seconds. Note how the app contains some sample data.

-
Type the command in the command box and press Enter to execute it. e.g. typing
helpand pressing Enter will open the help window.
Some example commands you can try:-
list: Lists all the expenses you have recorded. -
addd/Lunch at VivoCity a/12.95 c/Food t/2022-03-12: Adds a new expense of a/12.95 for Lunch at Vivocity to your list of expenses -
delete3: Deletes the 3rd expense shown in the current list. -
exit: Exits the app for you.
-
-
Refer to the Features below for details of each command.
ℹ️ Notes about the command format:
-
Words in
UPPER_CASEare the parameters to be supplied by the user.
e.g. ind/DESCRIPTION,DESCRIPTIONis a parameter which can be used asd/Dinner at ECP. -
Items in square brackets are optional.
e.gd/DESCRIPTION [c/CATEGORY]can be used asd/Dinner at ECP c/Foodor asd/Dinner at ECP. -
Items in brackets means at least one of the components must be present.
-
e.g.
(ft/DATE) (c/CATEGORY)can be used asft/2022-03,ft/2022-03 c/Transportorc/Transport. -
Parameters can be in any order.
e.g. if the command specifiesd/DESCRIPTION a/AMOUNT,a/AMOUNT d/DESCRIPTIONis also acceptable. -
If a parameter is expected only once in the command but is instead specified multiple times, only the last occurrence of the parameter will be taken.
e.g. if you specifya/12.99 a/13.50, onlya/13.50will be taken. -
Extraneous parameters for commands that do not take in parameters (such as
help,listandexit) will be ignored.
e.g. if the command specifieshelp 123, it will be interpreted ashelp.
Shows a message explaining how to access the help page.
Format: help
Adds an expense to the list. Description and expense category provided must be in alphanumerical format, amount can only be positive number up to 2 decimal places and expense date must be in yyyy-MM-dd format. Expense category must be from a list of user-defined categories.
Format: add d/DESCRIPTION a/AMOUNT c/EXPENSE_CATEGORY t/EXPENSE_DATE
Examples:
add d/Dinner at Privé a/35 c/Extra expense t/2022-03-22add d/Groceries a/50 c/Essentials t/2022-03-23
Deletes the expense specified by the index from the list. Run list before executing the command to identify the index of the expense.
Format: delete INDEX
Examples:
delete 1
Edits an existing expense in the list. You need to specify the index of the expense from the list and only the syntax of the fields you want to change together
with the value you want to change to. You can specify one or more fields. Run list before executing the command to identify the index of the expense.
Format: edit INDEX [d/DESCIPTION] [a/AMOUNT] [c/EXPENSE_CATEGORY] [t/EXPENSE_DATE]
Examples:
edit 1 a/40edit 2 d/Groceries from Fairprice a/80
Shows a list of all expenses recorded in Expense Expert.
Format: list
Filter expenses with the date provided. At least one of the fields in brackets need to be present. Date format must be provided in yyyy-MM-dd format or in yyyy-MM format. If date provided is in yyyy-MM format, the displayed will include all the results of that month.
Format: filter (ft/DATE) (c/CATEGORY)
Examples:
filter ft/2022-03-12filter ft/2022-03filter c/Transportfilter ft/2022-03 c/Transport
Find expenses with the stated keyword(s) in descriptors. If more than one keyword is provided, return list of expenses with expense description that matches any of the keywords provided.
Format: find KEYWORD(S)
Examples:
find Cafefind Cafe Grab
Set a budget for the month.
Format: budget b/BUDGET
Examples:
budget b/500
Adds a user-defined expense category which can be used to categorise expenses.
Format: addCat c/EXPENSE_CATEGORY
Examples:
addCat c/transport
Shows a list of all expenses recorded in Expense Expert.
Format: listCat
Add a person with a given name who owes you a specific amount.
Format: person n/PERSON_NAME a/PERSON_AMOUNT
Examples:
person n/Alex a/100
Removes a person at a given index who has paid the money they have owed.
Format: paid INDEX
Examples:
paid 1
Deletes all expenses from Expense Expert.
Format: clear
Exits the program.
Format: exit
Expense Expert data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
Expense Expert data are saved as a JSON file [JAR file location]/data/expenseexpert.json. Advanced users are welcome to update data directly by editing that data file.
Details coming soon ...
Q: How can I transfer my data to another Computer?
A: Install the app in the other computer and overwrite the empty data file it creates with the file that contains the data of your previous Expense Expert home folder.
| Action | Format, Examples |
|---|---|
| Help | help |
| Add | add d/DESCRIPTION a/AMOUNT [c/EXPENSE_CATEGORY] t/EXPENSE_DATE Example: add d/Lunch at VivoCity a/12.95 c/Food t/2022-03-20 |
| Delete | delete INDEXExample: delete 3 |
| Edit | edit INDEX [d/DESCRIPTION] [a/AMOUNT] [c/EXPENSE_CATEGORY] [t/EXPENSE_DATE]Example: edit 2 d/Lunch at Harbourfront Centre a/6.50 |
| List | list |
| Filter | filter (ft/FILTER_DATE) (c/CATEGORY) Example: filter ft/2022-03 c/Transport |
| Find | find KEYWORD [MORE_KEYWORDS] Example: find Cafe Grab Basketball |
| Budget | budget b/BUDGET Example: budget b/1000 |
| AddCat | addCat c/EXPENSE_CATEGORY Example: addCat c/transport |
| ListCat | listCat |
| Person | person n/PERSON_NAME a/PERSON_AMOUNT Example: person n/Alex a/50 |
| Paid | paid INDEX Example: paid 1 |
| Clear | clear |
| Exit | exit |
