Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jwhitf4770
Helper I
Helper I

Average Calculation

How would you write this query?   It is to add up different columns * 200000 / sum of another column.   I'm trying to break it down as simple as possible.   StartDate is a date 12 months ago.  It doesn't allow me to do calculations on var.  Thanks in Advance.

 

DART rolling average 2 =
var _LT = Calculate(sum(HSE[Lost Time]), ,FILTER(HSE,HSE[Date] > Value([StartDate])),
var _RR = Calculate(sum(HSE[Restricted Recordable]),FILTER(HSE,HSE[Date] > Value([StartDate])),
var _OR = Calculate(sum(HSE[Other Recordable]),FILTER(HSE,HSE[Date] > Value([StartDate])),
var _sums = calculate((_LT + [_OR] + [_RR] * 200000),
var _hours = Calculate(sum(HSE[Hours]),FILTER(HSE,HSE[Date] > Value([StartDate]),
return _sums/_hours
1 REPLY 1
amitchandak
Super User
Super User

@jwhitf4770 , Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

Inplace of Value([StartDate]) you need to have min([StartDate])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors