Hi!
In this case I have been calculating the values from column L to column M, then from column M to column N.
For every column I have done calculations the answers is presented with enough desimals until I reached column N.
Here I only get 1 decimal. As seen in the picture: (Dont mind the colours or the language)
Excel-ROUND.png
I get 0.8 instead of 0.79401 as I get with manual calculation in another spreadsheet
Basically cell N10 = M10 * (I10 - I9)*86400.
It is litre/sec * the date difference * 86400(s) = litre
I am a beginner at VBA but I have tried the following:
Range("M10").Select
Do Until ActiveCell.Value = ""
ActiveCell.Offset(0, 1).Value = Round((ActiveCell.Value * ((ActiveCell.Offset(0, -4).Value) - ActiveCell.Offset(-1, -4).Value) * 86400), 4)
ActiveCell.Offset(1, 0).Select
Loop
I hope you are able to understand my question
Thanks
Bookmarks