The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I need to calculate the Average Sales only for the period that Sales data exist (red line).
The measure I created though expands to all dates in my Date table (blue line).
How can I fix that using DAX?
I tried DATESBETWEEN as shown, with no success.
Try
Sales avg all dates =
VAR FirstSale =
CALCULATE ( MIN ( 'Sales'[Date] ), REMOVEFILTERS ( 'Dates' ) )
VAR FirstVisibleDate =
EOMONTH ( FirstSale, -1 ) + 1
VAR LastSale =
CALCULATE ( MAX ( 'Sales'[Date] ), REMOVEFILTERS ( 'Dates' ) )
VAR LastVisibleDate =
EOMONTH ( FirstSale, 0 )
VAR MinDate =
MIN ( 'Dates'[Date] )
VAR MaxDate =
MAX ( 'Dates'[Date] )
VAR Result =
IF (
MinDate >= FirstVisibleDate
&& MaxDate <= LastVisibleDate,
CALCULATE (
AVERAGEX ( VALUES ( 'Dates'[Month & Year] ), [Sales] ),
REMOVEFILTERS ( 'Dates' )
)
)
RETURN
Result
Thank you @johnt75 ,
Suggested measure works as far as calculation is concerned, but not as expected in visual.
Use Performance Analyzer to copy the query for the visual into DAX Studio. You can then use the Define Measure feature in DAX Studio to change the measure to return each of the intermediate variables in turn, that should identify which variable is being calculated incorrectly.
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |