Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I need help creating a QTD measure that will allow me to sum values differently based on the value description. I have Table A with contains various values that are daily sums or End of Month snapshots. The following Measure works only for daily sums but not End of Month Snapshots:
CALCULATE (
[Amount], // Sum(TableA[Value])
REMOVEFILTERS ( 'Date' ),
'Date'[Year Month Number] <= LastMonthAvailable,
'Date'[Year Quarter Number] = LastYearQuarterAvailable
)
Date | Description | Value | Desired Outcome if 8/31 is selected | |
7/1/2020 | Income | 5 | Income is aggregated by Day | |
7/2/2020 | Income | 6 | ||
7/3/2020 | Income | 7 | ||
…. | ||||
8/31/2020 | Income | 5 | ||
1/31/2020 | # Accounts | 100 | # Accounts contains latest month snapshot | |
2/28/2020 | # Accounts | 120 | ||
3/31/2020 | # Accounts | 130 | ||
… | ||||
8/31/2020 | # Accounts | 150 |
Solved! Go to Solution.
@ae19bu , You have closingbalanceQuarter, that can date the last day balance of the closingbalanceQuarter. Also, you have the last nonblankvalue
closingbalanceQuarter(Sum('Table'[Value]), Date[Date])
Please date calendar with that QTD Total
QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))
Last QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(dateadd('Date'[Date],-1,QUARTER)))
Last Day QTD total
Now with lastnonblankvalue, I using table date not the date from date table to make sure if balance is not there on last date it take last avaiable date
QTD Sales = CALCULATE(lastnonblankvalue(Sales[Date],SUM(Sales[Sales Amount])),DATESQTD(('Date'[Date])))
Last QTD Sales = CALCULATE(lastnonblankvalue(Sales[Date],SUM(Sales[Sales Amount])),DATESQTD(dateadd('Date'[Date],-1,QUARTER)))
I have video for this - https://youtu.be/yPQ9UV37LOU
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...
Appreciate your Kudos.
@ae19bu , You have closingbalanceQuarter, that can date the last day balance of the closingbalanceQuarter. Also, you have the last nonblankvalue
closingbalanceQuarter(Sum('Table'[Value]), Date[Date])
Please date calendar with that QTD Total
QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))
Last QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(dateadd('Date'[Date],-1,QUARTER)))
Last Day QTD total
Now with lastnonblankvalue, I using table date not the date from date table to make sure if balance is not there on last date it take last avaiable date
QTD Sales = CALCULATE(lastnonblankvalue(Sales[Date],SUM(Sales[Sales Amount])),DATESQTD(('Date'[Date])))
Last QTD Sales = CALCULATE(lastnonblankvalue(Sales[Date],SUM(Sales[Sales Amount])),DATESQTD(dateadd('Date'[Date],-1,QUARTER)))
I have video for this - https://youtu.be/yPQ9UV37LOU
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...
Appreciate your Kudos.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
7 | |
6 | |
5 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
6 |