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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Team,
I need help with dax to get Average however I got it for count(Dax).
I need dax for average for below
average_Lmonth = Last Nmonth -1(Jan-24, Feb-24, Mar-24, Apr-24).
average = Lmonth(Jan-24, Feb-24, Mar-24, Apr-24,May-24)
Folder: Sample File
Regards,
Chandrashekar B
Solved! Go to Solution.
Thanks for the reply from @BeaBF . The following is my testing for your reference.
I added some data in the table.
Measure =
VAR _Last1month =
CALCULATE (
COUNT ( 'Table'[Company] ),
FILTER (
'Table',
[Month_Year] >= MIN ( slicer[Month_Year] )
&& [Month_Year]
<= DATE ( YEAR ( MAX ( slicer[Month_Year] ) ), ( MONTH ( MAX ( slicer[Month_Year] ) ) - 1 ), DAY ( MAX ( slicer[Month_Year] ) ) )
)
)
VAR _lastmonth =
CALCULATE (
COUNT ( 'Table'[Company] ),
FILTER (
'Table',
[Month_Year] >= MIN ( slicer[Month_Year] )
&& [Month_Year] <= MAX ( slicer[Month_Year] )
)
)
RETURN
DIVIDE ( _Last1month, _lastmonth )
Output:
Due to Security Policy, I am unable to open your link. If there is still a problem, please let me know the logic for calculating your desired result.
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Chandrashekar Hi! Try with:
Hello,
Sorry not getting expected output. Expected out as below. Thanks in advance.
Output:
Input:
Regadrds,
Chandrashekar B
@Chandrashekar Try:
Hello,
Month should be dynamic.
Regards,
Chandrashekar B
Hello,
Depends on selection from slicer. it may be old data(May be 2018 to till today.
Final Intention is to check how client is doing.
Regards,
Chandrashekar B
Regards,
Chandrashekar B
Hello,
Can we take average based on company instead of sl no.
Regards,
Chandrashekar B
Thanks for the reply from @BeaBF . The following is my testing for your reference.
I added some data in the table.
Measure =
VAR _Last1month =
CALCULATE (
COUNT ( 'Table'[Company] ),
FILTER (
'Table',
[Month_Year] >= MIN ( slicer[Month_Year] )
&& [Month_Year]
<= DATE ( YEAR ( MAX ( slicer[Month_Year] ) ), ( MONTH ( MAX ( slicer[Month_Year] ) ) - 1 ), DAY ( MAX ( slicer[Month_Year] ) ) )
)
)
VAR _lastmonth =
CALCULATE (
COUNT ( 'Table'[Company] ),
FILTER (
'Table',
[Month_Year] >= MIN ( slicer[Month_Year] )
&& [Month_Year] <= MAX ( slicer[Month_Year] )
)
)
RETURN
DIVIDE ( _Last1month, _lastmonth )
Output:
Due to Security Policy, I am unable to open your link. If there is still a problem, please let me know the logic for calculating your desired result.
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
Thank you and will check.
Regards,
Chandrashekar B
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
30 | |
18 | |
11 | |
7 | |
5 |