Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
I have a cumulative total bar chart comparing proposals sent from 2021 to 2022. In September there were no proposals sent. How do you carry accross the same value for August so that September is not left blank?
Thank you
Solved! Go to Solution.
Hi @Anonymous
I don't think this can be achieved without the use of a Date Table. Using a Date Table you can slice by [Month Name]
Running total 2022 new =
COALESCE (
[Running total 2022],
CALCULATE (
[Running total 2022],
ALL ( 'Date'[Month Name] ),
'Date'[YearMonth Rank]
= MAX ( 'Date'[YearMonth Rank] ) - 1
)
)
Hi @Anonymous
I don't think this can be achieved without the use of a Date Table. Using a Date Table you can slice by [Month Name]
Running total 2022 new =
COALESCE (
[Running total 2022],
CALCULATE (
[Running total 2022],
ALL ( 'Date'[Month Name] ),
'Date'[YearMonth Rank]
= MAX ( 'Date'[YearMonth Rank] ) - 1
)
)
@Anonymous
You can use the [Month Number] column but that won't work in case the blank month is January and you want to return December of the previous year.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 9 | |
| 7 | |
| 6 |