Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello,
I have data, "total time it took to create the part"(time) and "working mins" (Whole Number).
Is here a way to divide one into the other.
This data would then be used to provide a percentage for the machine efficency for the day, week, month etc.
I would really appreciate and help/ suggestions on this
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous
Create a measure like below.Then drag the date column and the measure to a table visual.
Measure = DIVIDE ( CALCULATE ( SUM ( Table1[Time_Second] ) ), CALCULATE ( MAX ( Table1[Working-Second] ) ) )
Regards,
Hi @Anonymous
You may convent them to seconds columns.Then use the seconds columns to get the percent as requested.
Time_second = HOUR ( [Time it took to create the part] ) * 60 * 60 + MINUTE ( [Time it took to create the part] ) * 60 + SECOND ( [Time it took to create the part] )
Working_second = Table2[Working mins]*60
Regards,
Thanks @v-cherch-msft for your help.
Im am now having an issue with the division
if i divide Time_Second into Working_Second in a measure it will sum all of the working mins
eg Sum of Thursday working seconds = 172 +172 +171 + 80 + 141 +415 = 1,151
but it also totals all the working seconds 32400 x 6 = 194,400
Is there a way to divide it by a single 32400
(I intend to create report visualisation by day, week month etc so cant select lowest number etc
Hi @Anonymous
You may create a measure with MAX function to get it.If it is not your case,please share some sample data and expected output which would be helpful to provide an accurate solution.
Measure = DIVIDE ( MAX ( [Working_second] ), SUM ( [Time_Second] ) )
How to Get Your Question Answered Quickly
Regards,
Apologies @v-cherch-msft
For context;
We have a factory machine that cuts throughout the day. I wanted to add to the total cutting time together and then divide by the time in the workers shift in order to get the machine utilisation.
on the 16th of april Tuesday i have 8 results
1095 + 183 + 185 + 935 + 977 + 1072 + 1078 + 189 = 5,714 (total seconds of machine in use)
The total working seconds for that day would be 32400
I had intended of calculating the machine usage by dividing the total seconds the machine is in use by the total working seconds in a workers shift ( 5,714/32,400 ) which would be 17.63%
FYI on fridays we have different working hours
Thanks
Hi @Anonymous
Please check below measure:
Measure = DIVIDE ( CALCULATE ( SUM ( Table1[Time_Second] ), FILTER ( Table1, Table1[Date] = DATE ( 2019, 4, 16 ) ) ), CALCULATE ( MAX ( Table1[Working-Second] ), FILTER ( Table1, Table1[Date] = DATE ( 2019, 4, 16 ) ) ) )
Regards,
Yes that looks to be exactly what i am am looking for.
Is there a way i can do the measure for all the days?
Apologies if this is simple, would be a novice to Dax
Hi @Anonymous
Create a measure like below.Then drag the date column and the measure to a table visual.
Measure = DIVIDE ( CALCULATE ( SUM ( Table1[Time_Second] ) ), CALCULATE ( MAX ( Table1[Working-Second] ) ) )
Regards,
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |