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
Workspace Admins can automatically apply a custom report title to all reports created within a specific workspace. You can also enforce this setting so members can't update it.
8
+
Automatically generate standardized report titles across your workspace using formulas. Admins can pull in dynamic data like report type or member name, and even lock naming rules to prevent edits.
9
9
10
10
---
11
11
12
-
# Set a Default Report Title
12
+
# Customize Report Titles Using Formulas
13
13
14
+
**Navigation:**
14
15
1. Head to **Settings > Workspace > [Workspace Name] > Rules**.
15
16
2. Scroll to **Custom Report Names**.
16
-
3. Configure the title formula:
17
-
- Use the example on the **Rules Settings page**, or refer to more [report formula options](https://help.expensify.com/articles/expensify-classic/spending-insights/Custom-Templates).
18
-
- Some formulas automatically update the report title as changes are made. For example, the title will update before submission if the formula includes the report date, total amount, or workspace name.
19
-
- Changes to Report Field values (e.g., `{field:Customer}`) won't update the title until the report is submitted. After submission and before approval, updates will apply automatically. Once a report is Approved or Reimbursed, the title will not update retroactively.
17
+
3. Configure the title formula using your preferred formulas (see below).
20
18
4. To prevent members from editing the title, enable the **Enforce Custom Report Names** toggle.
|`{report:submit:from:customfield1}`| 100 | Submitter custom field 1 |
69
+
|`{report:submit:from:customfield2}`| 1234 | Submitter custom field 2 |
70
+
71
+
---
25
72
26
-
## Can I stop team members from changing the report name?
27
-
Yes! Just turn on the **Enforce Default Report Title** option, and the title will be locked in based on the formula you set.
73
+
# Date Format Options
28
74
29
-
## What if my formula doesn't show the correct title immediately?
30
-
Some formula fields, like `{field:Customer}`, only update after submission. Others, like dates and amounts, update in realtime before submitting the report.
75
+
Customize date appearance with these formats:
76
+
77
+
| Format | Example |
78
+
| -- | -- |
79
+
| M/dd/yyyy | 5/23/2024 |
80
+
| MMMM dd, yyyy | May 23, 2024 |
81
+
| dd MMM yyyy | 23 May 2024 |
82
+
| yyyy/MM/dd | 2024/05/23 |
83
+
| MMMM, yyyy | May, 2024 |
84
+
| yy/MM/dd | 24/05/23 |
85
+
| dd/MM/yy | 23/05/24 |
86
+
| yyyy | 2024 |
87
+
88
+
---
89
+
90
+
# Advanced Formula Functions
91
+
92
+
Add `|` functions to format results:
93
+
94
+
| Function | Example | Description |
95
+
| -- | -- | -- |
96
+
|`frontpart`| `{report:submit:from:email|frontpart}` → alice | Gets first word or string before `@`|
97
+
|`substr:x`| `{report:policyname|substr:20}` → Sales Expenses | Trims to first `x` characters |
0 commit comments