Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 @Anonymous,
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.
Hello @Anonymous,
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |