Hector Gutierrez 2 Posted September 26, 2019 Share Posted September 26, 2019 Hello, I need help creating a calculated column that will calculate the difference between hour readings of a piece of equipment over a given date. Below is an example of what i need to accomplish. The "Hrs since previous" column is what i need to create. Link to comment Share on other sites More sharing options...
Gaia Paolini Posted October 1, 2019 Share Posted October 1, 2019 Use calculated column: SN([Hrs] - Last([Hrs]) OVER (Intersect([Equipment],Previous([Date]))),100) but first you need to correct the error in your last two dates (should be 2019 not 2018) otherwise the date order does not work. SN(..) takes either the first argument, or if the first argument is null the second (100) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now