Hello,
I'm trying to find a way to display the best historical preformance for some company metrics. The data is from a SQL server and comes in two parts. A numerator value and a denominator value. However, there are multiple values per work day and in order to be accurate, the numerators and denominators from a specific work day must first be summed before being divided.
Currently, I am able to display the data by creating a relationship to a table that is a list of individual work days so by creating a 1:Many relationship I can do the calculation using a measure (shown below)
Solved! Go to Solution.
Hello @Ben_Beaudry,
1. Create a measure to calculate the numerator and denominator sum for each work day:
NumeratorSum = SUM(AHS_SHM[Cycle_Time_Numerator]) DenominatorSum = SUM(AHS_SHM[Cycle_Time_Denominator])
2. Create a measure to calculate the SHM value using the numerator and denominator sums:
AHS SHM CT = DIVIDE([NumeratorSum], [DenominatorSum], 0)
3. Create a measure to find the all-time maximum SHM value:
MaxSHM = MAXX(ALL('AHS_SHM'[WorkDay]), [AHS SHM CT])
Let me know if you might need further assistance.
➤ Email: sahir@sahirmaharaj.com
➤ Lets connect on LinkedIn: Join my network of 12K+ professionals
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30k readers! Sharing my knowledge about data science and artificial intelligence
Hello @Ben_Beaudry,
1. Create a measure to calculate the numerator and denominator sum for each work day:
NumeratorSum = SUM(AHS_SHM[Cycle_Time_Numerator]) DenominatorSum = SUM(AHS_SHM[Cycle_Time_Denominator])
2. Create a measure to calculate the SHM value using the numerator and denominator sums:
AHS SHM CT = DIVIDE([NumeratorSum], [DenominatorSum], 0)
3. Create a measure to find the all-time maximum SHM value:
MaxSHM = MAXX(ALL('AHS_SHM'[WorkDay]), [AHS SHM CT])
Let me know if you might need further assistance.
➤ Email: sahir@sahirmaharaj.com
➤ Lets connect on LinkedIn: Join my network of 12K+ professionals
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30k readers! Sharing my knowledge about data science and artificial intelligence
User | Count |
---|---|
106 | |
82 | |
72 | |
48 | |
48 |
User | Count |
---|---|
155 | |
91 | |
82 | |
69 | |
67 |