Create an expense report in SharePoint - step-by-step
Vladi Gubler
Vladi Gubler
October 26, 2016 | Products

Hi,

Expense Report is one of the most common forms that almost any organization needs. You want to be able to quickly and easily report your business expenses and then route the form for approval. You would not believe how many places, even today, still use pen and paper, Excel or Word documents! Not everyone has the skills and the knowledge to build a robust modern solution for this common need.

But with SharePoint it's all so much easier. It's a great collaboration platform that is designed from the ground up to handle data and processes in shared, multi-user environment, while still preserving the necessary security restrictions. SharePoint out of the box is a great starting point for many business solutions and a lot can be done using SharePoint Designer or custom development. However, it's not always easy to build something slightly more advanced. For instance, multiple line items within the expense report or dynamic routing (when the approver is set dynamically based on the department) are certainly challenges that might have you scratching your head.

In this blog I will provide you with step-by-step instructions on how to build a real life expense report, complete with an approval stage. I will be using our product, Ultimate Forms, to add the necessary extra on top of regular SharePoint lists to make sure the process works exactly how I need it to work.

Basically, we will be implementing the following:

  1. Being able to create a new expense report. Some of my information, such as my name, will be automatically pre-filled.
  2. The line items can be added directly within the New form of the expense report, no save is necessary to start adding the line items
  3. Summary is automatically calculated based on the line items
  4. Manager for approval is automatically determined by selecting the appropriate department
  5. Manager will receive a notification in email with a link to the expense report. For extra credit we can even implement email-based approvals!
  6. Once the expense report is approved or rejected, the employee is notified.

Our finished form will look something like this:

Cool, right? :)

So let's start! I will be using the Office 365 add-in version of Ultimate Forms, but you can do exactly the same on premises as well.

Creating Lists

In SharePoint, our data is stored in lists, so we will need several lists for our Expense Report soluition.

  1. Departments
    This list will contain the various departments our employees belong to. It will then be used as a lookup source for our Department column in the Expense Reports list. We will start with a regular Custom list and just add one column of type Person or Group and call it Manager. It will hold the manager for the department


  2. Line Items
    This list will contain the line items for the expense report. We will start by create a new Custom list. To allow the parent and the child lists to create and maintain a relationship, we will need to replace the default Item content type with our special Infowise Associated Item content type. It contains a set of special hidden columns that allow us to create the relationship between the child and the parent items. To replace the content type do the following:
    1. Go to List Settings
    2. Go to Advanced Settings
    3. Choose Yes for Allow management of content types (the first option on the page)
    4. Save
    5. Under List Settings you will now see a new section for managing content types. Click on "Add from existing site content types".
    6. Select "Infowise Associated Item" content type and save
    7. Back on List Settings, click on Item content type and then delete it from the list



    Next, we will configure the list columns:
    • Rename Title to Details
    • Add a choice column Expense Type and fill th choices you want (such as Fare, Lodging, Meals, Entertainment, etc.)
    • Add a date colum Date
    • Add a currency column Amount


  3. Expense Reports
    The main list holding all the data regarding the expense reports, excluding the line items. Start by creating a new Custom list. Now let's configure the columns:
    • Rename Title to Report ID
    • Add a date column Date, you can set the default to Today
    • Using Ultimate Forms add a new User Property column named Employee Name. It will be used to automatically prefill the submitter's name. In the Office 365 add-in version, you can use the following formula: [FirstName] [LastName]. In the on-premises version you can do the same to fetch the data from SharePoint Profile service, or, if using Foundation, directly from Active Directory: [givenName] [sn]
    • Add a lookup column Department using the Departments list, make it required
    • Add a text column Location (to specify where the expenses took place)
    • Add date columns Start Date and End Date
    • Using Ultimate Forms add a new Associated Items column named Items. It will point to our Line Items list and use the Infowise Associated Items content type
    • Using Ultimate Forms add a new Associated Items Summary column named Subtotal. It will calculate a Sum of the Amount column in Items

    • Add a currency column Advance, set the default to 0
    • Add a calculated column Total, using the formula =Subtotal-Advance, set the display format to Currency
    • Add a choice column Approval Status, add choices N/a, Approved and Rejected, make it required and make sure N/a is the default
    • Add a date column Approval Date
    • Add a multiple lines of text column Approval Comments

That's it, all our lists are created, so we can start turning them into an actual business application.

Configuring Forms

Well, we actually just need to configure one form, the Expense Report itself.

First, let's configure automatic numbering for Report ID. This way each report will have a unique identifier. I used the format EXR-<submitter name>-<year>-<numerator>, but you can use any other format you like.

  1. Go to Expense Reports list
  2. On the List ribbon click on Ultimate Forms' Design button
  3. Under Configure Business Logic click on Item IDs
  4. Add a new rule for Report ID column. Set it to run on New item and check Prevent manual editing. Under Pattern enter: EXR-[Employee Name]-$Year([Created])-[#]
  5. Save

Next, let's configure the tabs and tab permissions. This will ensure users can only update the information they are allowed to.

  1. Go to Expense Reports list
  2. On the List ribbon click on Ultimate Forms' Design button
  3. Under Configure Layouts and Permissions click on Tabs and tab permissions
  4. Add a new tab Expenses
  5. Under Tab-column Association pick the following columns to appear on the tab:
    1. Employee Name
    2. Date
    3. Department
    4. Add section: Trip Details
    5. Start Date
    6. End Date
    7. Location
    8. - Blank Row -
    9. Items
    10. - Blank Row -
    11. Subtotal
    12. - New Row -
    13. Advance
    14. - New Row -
    15. Total
  6. Under Tab Permissions add the following rules:
    Permission level  For users/groups Default Apply in forms Conditions
     Write      New  
    Read       Edit;View  
     Write      Edit  Approval Status equals N/a
  7. Add a new tab Approval
  8. Underr Tab-column Association pick the following columns to appear on the tab:
    1. Approval Status
    2. Approval Date
    3. Approval Comments
  9. Under Tab Permissions add the following rules:
    Permission level For users/groups Default Apply in forms Conditions
     Deny (hidden)     New  
     Read     Edit;View  
     Write  Column: Department -> Manager    Edit  Approval Status equals N/a
  10. Under General Settings choose Modern theme, Label location: Above field, Description location: Under field and Columns: 2
  11. For extra credit, let's apply custom styling to the form to make it really stand out. You can make use of the styles described in this article. Or, in Office 365, you can now import the style from this file (right-click as Save As).

 

Configuring Alerts

With the forms done, now it's time to configure some alerts. We are going to be adding 2 alerts, one to inform the manager that an expense report has been submitted and the other one to inform the submitter regarding the outcome of the approval.

Alert #1

  • Go to Expense Reports list
  • On List ribbon click on Add Alert button
  • Under Recipients remove yourself from To box
  • Click the plus button to add a new recipient
  • Under Users in column select Department and then in the additional selector - Manager

  • Under What to send clear everything but Item is added
  • Under Mail Templates create your own email template, it can contain text, column values and special functions (such as Edit Item link)
  • Save the alert

Alert #2

  • Go to Expense Reports list
  • On List ribbon click on Add Alert button
  • Under Recipients remove yourself from To box
  • Click the plus button to add a new recipient
  • Under Users in column select Created By
  • Under What to send clear everything by Item is modified
  • Under Conditions add Approval Status after change not equals N/a - that will make sure the alert is only sent when an approval decision is made
  • Under Mail Templates create your own email template, it can contain text, column values and special functions
  • Save the alert

 That's it! Your Expense Report system is ready for action!

Loading...

Add your comment

Comments are not designed to replace support calls. If you have a specific issue with one of our products, please send an email to support@infowisesolutions.com to open a support ticket.

UltimateForms

Build powerful business applications in SharePoint using only your browser.
100% No-Code Solution

It's never been easier, to create, innovate and share, all you need is your web browser!

Cost-effective

Address business process pain points immediately. Save time and money.

Fantastic Support Team

Facing difficulties installing the application? Contact our fantastic support team.

support@infowisesolutions.com

Related Topics

What is right for you?

Online Trial

Not ready to install yet? Create a trial site in our environment
  • Full control of the site and its settings
  • Optionally pre-install one of our solution templates
  • Site provisioned instantly
  • Automatically removed after 30 days
  • Available to everyone!

Error!

There was an error processing your request.
Please contact us for further details.

Installation

Install in your own environment, on Microsoft 365 and on premises
  • Start working with real users and data
  • Install online or on premises
  • Register for 30 day trial
  • Seemlessly convert to paid license
  • Requires administrator permissions

Success!

Download link has been emailed to .
If you do not receive it within 5 minutes, please check your spam.
The link is valid for 72 hours.
If you are having problems, please contact us.

Error!

There was an error processing your request.
Please contact us for further details.
Technical details:

Request a Live Demo

Book an appointment for a one-on-one with an ULTIMATEforms expert trainer.

Test drive the awesome power of ULTIMATEforms

Learn how to quickly and easily turn time-consuming business processes into automated, efficient workflows.

Have a strong start

Only thirty minutes of well-coached time can translate into great future savings in time and money. So, sit back and enjoy the ride.

It's Free

Learn how to address business process pain points immediately. Save time and money.