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 there
I have just started my Power BI journey. I am trying to calculate the average time a specific maschine needed to complete a specifict task in order to compare it with the planned data.
In the screen shot below you can see my sample data, which includes:
- 5 different Maschine types (A, B C, D an E)
- 3 different Tasks (Nr 1, 2 and 3)
- Time needed for completing the task
Since there are many more maschine types and tasks in my real data set, I am looking for a way to build a table or a matrix, where I do not have to manually write the reffered machine ( = "Maschine A") or task, into the function. Any ideas how to do that?
Thanks in advance!
Solved! Go to Solution.
Hi,
Since measures work using current filter context a basic average measure should do what you want:
Example data:
Dax:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
@JM94 use the following measure
Avg by Maschine and task =
CALCULATE (
AVERAGE ( tbl[Time] ),
ALLEXCEPT ( tbl, tbl[Maschine], tbl[Task Nr.] )
)
Hi,
Since measures work using current filter context a basic average measure should do what you want:
Example data:
Dax:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
User | Count |
---|---|
12 | |
9 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
14 | |
9 | |
7 |