• Business
    • Insurance
    • Investment
    • Real Estate
    • Online Marketing
    • Finance
    • Cryptocurrency
    • Marketing
  • Fashion
    • Gear
    • Women
  • Health
    • Food
    • Fitness
    • Hygiene
    • Tips
  • Home Improvement
    • Gardening
    • Interior
    • Kitchen
    • Painting
    • Plumbing
    • Remodeling
  • Education
  • Travel
  • Technology
Menu
  • Business
    • Insurance
    • Investment
    • Real Estate
    • Online Marketing
    • Finance
    • Cryptocurrency
    • Marketing
  • Fashion
    • Gear
    • Women
  • Health
    • Food
    • Fitness
    • Hygiene
    • Tips
  • Home Improvement
    • Gardening
    • Interior
    • Kitchen
    • Painting
    • Plumbing
    • Remodeling
  • Education
  • Travel
  • Technology
  • Contact Us
  • Write for us
  • Privacy Policy
  • Terms and Conditions
Menu
  • Contact Us
  • Write for us
  • Privacy Policy
  • Terms and Conditions
power bi consulting
Power BI Consulting

How to Create Better Aging Reports in Power BI?

Lulu Beier
Last updated: July 12, 2023 1:03 pm
Lulu Beier
Published July 4, 2023
Share
10 Min Read
SHARE

Aging reports are a common type of report that show the status of items such as invoices, payments, orders, or inventory over time.

Contents
What is an Aging Report?How to Create Aging Reports in Power BI?Step 1: Load the Data into Power BIStep 2: Create a Date TableStep 3: Create a Relationship between the Data Table and the Date TableStep 4: Create Measures for Aging ReportStep 5: Create Visuals for Aging Report

They help businesses to monitor their cash flow, manage their inventory, and optimize their operations.

However, creating aging reports in Power BI can be challenging, especially if you want to allow users to select a different date and see how the aging report changes accordingly. That’s why many businesses rely on power bi consulting services to help them design and implement effective aging reports in Power BI.

In this article, I will show you how to create aging reports in Power BI that are dynamic, flexible, and informative.

What is an Aging Report?

An aging report is a report that shows the distribution of items by their age.

For example, an accounts receivable aging report shows how much money customers owe to a business and how long they have been overdue.

An accounts payable aging report shows how much money a business owes to its suppliers and how long it has been overdue.

An aging report typically uses bins or buckets to group items by their age.

For example, a common binning scheme for accounts receivable is 0-30 days, 31-60 days, 61-90 days, and over 90 days. These bins indicate how long an invoice has been outstanding since its due date.

How to Create Aging Reports in Power BI?

To create aging reports in Power BI, you need to have a data source that contains the following information:

  • The item identifier (such as invoice number or order number)
  • The item amount (such as invoice amount or order amount)
  • The item due date (such as invoice due date or order due date)
  • The item status (such as open or closed)

For this example, I will use a sample data set of accounts receivable that I downloaded from here. You can download the same data set and follow along with me.

The data set contains 1000 rows of invoices with the following columns:

  • Invoice No: The invoice number
  • Invoice Date: The invoice date
  • Due Date: The invoice’s due date
  • Amount: The invoice amount
  • Paid Date: The invoice paid date
  • Status: The invoice status (Open or Closed)

Here are the steps to create an aging report in Power BI using this data set:

Step 1: Load the Data into Power BI

The first step is to load the data into Power BI. You can do this by clicking on Get Data in the Home tab and selecting Excel. Then browse to the location where you saved the data set and select it.

Power BI will show you a preview of the data in the Navigator pane. You can select the sheet that contains the data (in this case, Sheet 1) and click on Load.

Power BI will load the data into the Data view. You can see the columns and rows of the data in the Fields pane and the Table pane.

Step 2: Create a Date Table

The next step is to create a date table that will be used to filter the data by a user-selected date. You can do this by clicking on New Table in the Home tab and entering the following formula:

Date = CALENDAR(DATE(2018,1,1),DATE(2020,12,31))

This formula will create a table called Date that contains one column with dates from January 1, 2018, to December 31, 2020. You can adjust the start and end dates according to your data.

Also, you can add some additional columns to the data table, such as year, month, and quarter. You can do this by clicking on New Column in the Home tab and entering the following formulas:

Year = YEAR(Date[Date])

Month = FORMAT(Date[Date],”mmm”)

Quarter = “Q” & FORMAT(Date[Date],”Q”)

These formulas will create three columns called Year, Month, and Quarter that extract the year, month, and quarter from the date column.

You can also mark the date table as a date table by clicking on Mark as Date Table in the Modeling tab and selecting the date column as the date column.

power bi consulting

Step 3: Create a Relationship between the Data Table and the Date Table

The next step is to create a relationship between the data table (Sheet 1) and the date table (Date) based on the due date column. You can do this by clicking on Manage Relationships in the Modeling tab and selecting New.

Power BI will show you a dialogue box where you can select the tables and columns to create the relationship. You can select Sheet 1 as the first table, Due Date as the first column, Date as the second table, and Date as the second column. You can also select Many to One (*) as the cardinality and Single as the cross-filter direction.

Power BI will create a relationship between the two tables and show it in the Relationships view. You can see a line connecting the two tables with an asterisk (*) on one end and one (1) on the other end.

Step 4: Create Measures for Aging Report

The next step is to create measures that will calculate the aging report based on the user-selected date. You can do this by clicking on New Measure in the Home tab and entering the following formulas:

Total Amount = SUM(Sheet1[Amount])

This measure will calculate the total amount of all invoices.

Selected Date = MAX(Date[Date])

This measure will return the maximum date from the date table, which is equivalent to the user-selected date.

Age = DATEDIFF(Sheet1[Due Date],[Selected Date],DAY)

This measure will calculate the age of each invoice in days based on the due date and the selected date.

Bin = SWITCH(TRUE(),

    [Age] <= 30, “0-30”,

    [Age] <= 60, “31-60”,

    [Age] <= 90, “61-90”,

    [Age] > 90, “>90”,

    BLANK()

)

This measure will assign each invoice to a bin or bucket based on its age. You can change the binning logic according to your business needs.

Amount by Bin = CALCULATE([Total Amount],FILTER(Sheet1,[Bin] = SELECTEDVALUE(‘Aging Report'[Bin])))

This measure will calculate the total amount by bin or bucket based on the selected value from a slicer that we will create later.

Step 5: Create Visuals for Aging Report

The final step is to create visuals that will display the aging report in a clear and concise way. You can do this by clicking on New Page in the Report view and adding some visuals from the Visualizations pane.

For this example, I will create a matrix that will show the count and percentage by bin and bucket, and status.

To create a matrix, you can drag and drop the Bin measure from Sheet 1 into a blank area of the report canvas. Power BI will automatically create a matrix with bins as rows.

You can then drag and drop the Status field from Sheet 1 into the Columns well and the Count of Invoice No field from Sheet 1 into the Values well.

Power BI will create a matrix with bins as rows, status as columns, and count of invoices as values.

You can also add another measure to calculate the percentage of invoices by bin and status. You can do this by clicking on New Measure in the Home tab and entering the following formula:

% of Invoices = DIVIDE(COUNT(Sheet1[Invoice No]),CALCULATE(COUNT(Sheet1[Invoice No]),ALL(Sheet1[Status])),0)

You can change the format of the matrix by clicking on it and using the options in the Format pane. For example, you can change the font size and colour, add conditional formatting, and add a title. I hope you found this article helpful and informative. If you need any power bi consulting services or have any questions or feedback, please feel free to comment.

Lulu Beier
Lulu Beier
TAGGED:power bi consulting

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Email Print
Share
Previous Article how to punish dogs for pooping in house How to Get Rid of Dog Poop Smell in Your Home?
Next Article Seamless-Truck-Permit-Management-To-Boost-Your-Trucking-Efficiency-on-contributionblog Seamless Truck Permit Management To Boost Your Trucking Efficiency

Trending Posts

new diabetes medication for weight loss
Breaking the Weight Loss Code: How Diabetes Drugs Are Changing Lives?
Fitness Health Uncategorized
How Does A Water Cooling System Enhance Performance In High-Demand Applications on contributionblog
How Does A Water Cooling System Enhance Performance In High-Demand Applications?
Uncategorized
Why Mobile Portable Construction Trailers Are Changing The Way We Build on contributionblog
Why Mobile Portable Construction Trailers Are Changing The Way We Build
Uncategorized
How Portable Construction Trailers Streamline Communication On Large Job Sites on contributionblog
How Portable Construction Trailers Streamline Communication On Large Job Sites
Uncategorized

Categories

Admission Consultation Attorney Automobile Azure Synapse Machine Learning Beauty Business Childcare Consumer Services Cryptocurrency Dentistry Digital Marketing Digital marketing agency Education Fashion featured Finance Fitness Food Gardening Gear Hair Salon Health Home Improvement Hygiene Insurance Interior Investment Kitchen Law Firm Lawyer Marketing Medical Imaging Nutrition Suppliments Online Courses Online Marketing Painting Parenting Pet Products Plumbing Power BI Consulting Real Estate Remodeling Sports Technology Tips Transportation Travel Uncategorized Women

Don't Miss

How Do Skilled Mortgage Brokers Simplify The Home-Buying Process?
Real Estate
pet care tips
Keep Your Cat’s Teeth Clean: A 7-Step Guide to Brushing
Business
Refinance-Mortgage-Pros-And-Cons---Making-An-Informed-Decision-on-contributionblog
Refinance Mortgage Pros And Cons – Making An Informed Decision
Real Estate
dynamics 365 implementation partners
Unlocking Business Potential: Your Guide to Dynamics 365 Implementation
Business Power BI Consulting

ContributionBlog offers the latest insights on news, business trends, digital marketing strategies, technological advancements, and AI services. It aims to provide valuable information to help readers stay informed and grow their expertise.

Latest Posts

Patient Reviews Decoded: Finding the Best Dentist in Saskatoon
April 21, 2025
What Are The Best Techniques For Creating An Easy-To-Navigate Web Design?
April 12, 2025
Finding the Right External Application Support: A Personal Guide
April 15, 2025

Popular Posts

Patient Reviews Decoded: Finding the Best Dentist in Saskatoon
April 21, 2025
What are the Top Companies for the Miami Junk Removal Services?
December 27, 2018
How To Choose A Mobility Scooter
December 27, 2018

© All rights reserved & designed by ContributionBlog

  • Contact Us
  • Write for us
  • Privacy Policy
  • Terms and Conditions
Menu
  • Contact Us
  • Write for us
  • Privacy Policy
  • Terms and Conditions
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?