Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I've started with Power BI a week ago. I found that was the perfect tool for what i was asked for.
I've been chosen to get the time measures of the processes of my company. The metric chosen has been the Lead Time. For each item there is a Lead Time.
Each item must be categorized in a product catalog. Then the metricts will be shown by product:
The only metric that I havent been able to calculate with Power BI desktop is LT_average_max. I want to get the value of the average of the month with the highest (or lowest) average. At the moment I am using and aux matrix summarizing the averages by product and by month, and them I've to copy all manually to anothe table for the presentations (very arcaic).
Taking in account my researchs, I guess that the optimal way to get this value is by using a measure. But at the moment I can only write very simple functions and I'm not ready to solve this problem.
Thank you in advanced for trying to help me.
P.D. This is my first post. If you have found points on which I can improve, I would be grateful if you could point them out to me .
Solved! Go to Solution.
@Fresquito_14 can you try the above?
avgByProdMaxYear =
CALCULATE (
AVERAGE ( 'Sample'[LT] ),
VAR _base =
GROUPBY (
'Sample',
'Sample'[Product],
'Sample'[Year],
"avg", AVERAGEX ( CURRENTGROUP (), 'Sample'[LT] )
)
VAR _rank =
SUMMARIZE (
FILTER (
ADDCOLUMNS (
_base,
"rank", RANKX ( FILTER ( _base, [Product] = EARLIER ( [Product] ) ), [avg],, DESC )
),
[rank] = 1
),
'Sample'[Product],
'Sample'[Year]
)
RETURN
_rank
)
@Fresquito_14 please refer to the attached pbix
@Fresquito_14 can you try the above?
avgByProdMaxYear =
CALCULATE (
AVERAGE ( 'Sample'[LT] ),
VAR _base =
GROUPBY (
'Sample',
'Sample'[Product],
'Sample'[Year],
"avg", AVERAGEX ( CURRENTGROUP (), 'Sample'[LT] )
)
VAR _rank =
SUMMARIZE (
FILTER (
ADDCOLUMNS (
_base,
"rank", RANKX ( FILTER ( _base, [Product] = EARLIER ( [Product] ) ), [avg],, DESC )
),
[rank] = 1
),
'Sample'[Product],
'Sample'[Year]
)
RETURN
_rank
)
Looks like it works. Thank you very much.
@Fresquito_14 while this works, I want to leave you with a more elegant 1 line measure. Pbix is attached.
_top1Average =
CALCULATE (
[average],
KEEPFILTERS ( TOPN ( 1, ALLSELECTED ( Sample_data[Year] ), [average], DESC ) )
)
Thank you but this second solution does not work for me. I will try it later when I'll get a bertter understanding of DAX and M.
The error that I get is that there is no column [average].
@Fresquito_14 please refer to the attached pbix
Now it works, I didn't know that [average] were a measure. This shows exactly what I'was looking for.
Thanks
Something like
LT_Average_max =
MAXX(
VALUES(Table[month]),
AVERAGE(Table[Lead Time])
)
Hi @PaulOlding.
This solution gives me the same solution as the annual average. The measure that I am looking for should calculate the LT for each month and provide the maximum value. In the table attached, LT_Average_min = 18,92 (I need the lowest btw, but it does not affect).
Thank you in any case.
I think to help any further I would need some example data and the result you're expecting from that.
I've made a sample in which three tables are shown.
You can access the table through this link: data example.xlsx
The pasword is:
Power_BI
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
43 | |
37 | |
25 | |
24 | |
23 |