Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Getting Started with the Spend Page
description: Learn how to use the Spend page in New Expensify to view, filter, and manage your expense data using report previews, tables, filters, and smart suggestions.
keywords: [New Expensify, Spend page, report preview, report table, filters, advanced filters, smart suggestions, expense management, add expenses, bulk actions, date range, search, expenses missing, Spend navigation, inline editing, edit expense inline, filter popover, apply filters, reset filters, total spend, total spend currency, change currency, currency converter, multi-currency total]
keywords: [New Expensify, Spend page, report preview, report table, filters, advanced filters, smart suggestions, expense management, add expenses, bulk actions, date range, search, expenses missing, Spend navigation, inline editing, edit expense inline, filter popover, apply filters, reset filters, total spend, total spend currency, change currency, currency converter, multi-currency total, sort by amount, Amount column, sort amount column, negative amount, credit, refund, negative expense sorting, selected total, total spend negative]
---

The Spend page in New Expensify gives you a full list of your reports and related expenses. From the Spend page you can explore, filter, and export your expense data.
Expand Down Expand Up @@ -97,6 +97,8 @@ The **Spend** page footer shows the **Total spend** for what you're viewing. Whe
- **Total spend:** the combined amount, shown with a currency code. With nothing selected, this covers the whole search result; when you select rows, it covers just your selection.
- **Expenses:** the number of expenses currently selected (shown when you've made a selection).

Credits and refunds are negative amounts, so they reduce the **Total spend** instead of adding to it. If you select a $100 expense and a -$100 credit, the **Total spend** reads $0.00.

The total is shown in your default currency until you choose a different one.

### How to change the total spend currency
Expand Down Expand Up @@ -124,6 +126,25 @@ The currency picker can't be opened in these cases:

---

## How to sort the Amount column on the Spend page

1. On the **Spend** page, select **Expenses**.
2. Click the **Amount** column header to sort from largest to smallest.
3. Click the **Amount** column header again to reverse the order.
Comment on lines +132 to +133

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add the mobile and narrow-layout sorting path

On mobile and medium-width layouts, these steps cannot be followed because SearchTableHeader returns without rendering any column headers (src/components/Search/SearchTableHeader.tsx:573-619). Sorting remains available through the Display menu's Sort by and Sort order controls, so label the current instructions as the large-screen web flow and add the distinct narrow/mobile flow; otherwise those users are told to click an Amount header that does not exist.

Useful? React with 👍 / 👎.


The **Amount** column header is only available when your results are shown as a table. When you group your results, this column header reads **Total** instead of **Amount**.

## How negative amounts sort in the Amount column on the Spend page

The **Amount** column sorts by the signed value each row displays, not by its size. Because credits and refunds are negative amounts:

- Sorting from largest to smallest puts every negative amount below every positive amount, ordered -$1, -$2, -$3 going down.
- Sorting from smallest to largest puts every negative amount above every positive amount.

A -$4,000 credit therefore sorts below a $10 expense rather than next to a $4,000 expense.

---

# Filters

## How to apply filters in New Expensify
Expand Down
Loading