Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi, I have a line and clustered graph and want to add the percent growth/decline from one quarter to the next (not the percent line shown as the total). It currently looks like this and I want the pink line if possible please. X Axis is Fiscal_Q from the calendar table and Y axis is the count of CustomerID from Sheet 1.
I have 2 sheets, one with customer data and the other is a calendar with fiscal quarters. This is how my Fiscal date table is set up:
Sample of how my customer data is structured:
| CustomerID | Date |
| CST1 | 01/04/2023 |
| CST2 | 01/04/2023 |
| CST3 | 01/04/2023 |
| CST4 | 01/07/2023 |
| CST5 | 01/07/2023 |
Unfortunately, the previous post didn't solve the question for me, apologies for the repost. Thanks in advance!
Solved! Go to Solution.
hello @RichOB
please check if this accomodate your need.
1. create a new measure for customer ID count.
Percent =
var _Quarter = SELECTEDVALUE('Date'[Fiscal_Q])
var _Current = CALCULATE(COUNT('Customer'[CustomerID]),'Date'[Fiscal_Q]=_Quarter)
var _Prev = CALCULATE(COUNT('Customer'[CustomerID]),PREVIOUSQUARTER('Date'[Date]))
Return
DIVIDE(
_Prev-_Current,
_Prev
)
note: dont forget to create a relationship between date tabel and your table
hello @RichOB
please check if this accomodate your need.
1. create a new measure for customer ID count.
Percent =
var _Quarter = SELECTEDVALUE('Date'[Fiscal_Q])
var _Current = CALCULATE(COUNT('Customer'[CustomerID]),'Date'[Fiscal_Q]=_Quarter)
var _Prev = CALCULATE(COUNT('Customer'[CustomerID]),PREVIOUSQUARTER('Date'[Date]))
Return
DIVIDE(
_Prev-_Current,
_Prev
)
note: dont forget to create a relationship between date tabel and your table
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 124 | |
| 105 | |
| 44 | |
| 32 | |
| 24 |