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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have the following table loaded into PBI. I can get the previous count per day using `PreviousDay` but when I want to add in another column I have trouble understanding how.
| Date | Count | RequestBucket |
| 11/2/2022 | 10 | Red |
| 11/2/2022 | 20,000 | Green |
| 11/1/2022 | 3 | Red |
| 11/1/2022 | 25,000 | Green |
How can I capture the previous count per date and RequestBucket?
New table:
| Date | PreviousCount | Count | RequestBucket |
| 11/2/2022 | 3 | 10 | Red |
| 11/2/2022 | 25,000 | 20,000 | Green |
| 11/1/2022 | Null | 3 | Red |
| 11/1/2022 | Null | 25,000 | Green |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Previouscount CC =
MAXX (
FILTER (
Data,
Data[RequestBucket] = EARLIER ( Data[RequestBucket] )
&& Data[Date]
= EARLIER ( Data[Date] ) - 1
),
Data[Count]
)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Previouscount CC =
MAXX (
FILTER (
Data,
Data[RequestBucket] = EARLIER ( Data[RequestBucket] )
&& Data[Date]
= EARLIER ( Data[Date] ) - 1
),
Data[Count]
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |