March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am trying to get Sales data from the same period last year (quarter to date). I have variables that carry the correct start and end date for my date range. Here is the logic in my Measure:
Last Year Deploy QTD = var _firstDayOfQuarter = DATEVALUE(LOOKUPVALUE(FiscalCalendarLabels[Label_Value],FiscalCalendarLabels[Label_Desc],"Last Year Same Quarter Start")) var _today = DATEVALUE(LOOKUPVALUE(FiscalCalendarLabels[Label_Value],FiscalCalendarLabels[Label_Desc],"Current Date")) var _sameDayLastYear = date(year(_today)-1,month(_today),day(_today)) var _lastDayOfQuarter = DATEVALUE(LOOKUPVALUE(FiscalCalendarLabels[Label_Value],FiscalCalendarLabels[Label_Desc],"Last Year Same Quarter End")) var _endDateToUse = if(_sameDayLastYear > _lastDayOfQuarter, _lastDayOfQuarter, _sameDayLastYear) var _deployLY_QTD = CALCULATE( sum(DemandReport[SCP_Deploy_Rev]), FILTER( ALL(DemandReport), DemandReport[Order_Date] >= _firstDayOfQuarter && DemandReport[Order_Date] <= _endDateToUse ) ) return _deployLY_QTD
I’ve also tried taking off the "Filter" function:
var _deployLY_QTD = CALCULATE( sum(DemandReport[SCP_Deploy_Rev]), DemandReport[Order_Date] >= _firstDayOfQuarter && DemandReport[Order_Date] <= _endDateToUse )
And I’ve tried many other things.
Here’s the thing: these DAX expressions work. But, they only work if my filter is set to a year ago. This means the “ALL” command isn’t ignoring the filters I have set elsewhere on the page.
Can anyone help? I'm new to Power BI, so I might be missing something obvious.
Thanks
Solved! Go to Solution.
That did it! I'll try to find some reading around why that worked, as I don't quite understand it.
I have another issue now with filtering reps, but I suppose I'll post that on another thread.
Thanks again!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |