The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |