Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
.
Hi Agrim,
In Properties Goto--> Dimensions-> Calculated Dimension
use following Expression as if(Late(mm)=0 and Late(mm)='-','Total elapse time',Late(mm))
You can use Alt();
=Sum(Alt([late (mm)], [Total elapsed time])) to replace nulls with the elapsed time values.
Hi Agrim,
In Properties Goto--> Dimensions-> Calculated Dimension
use following Expression as if(Late(mm)=0 and Late(mm)='-','Total elapse time',Late(mm))
I see you want the zero values converted as well. In that case
=Sum(If(len([late (mm)]) = Or [late (mm)] = 0, [Total elapsed time], [late (mm)]))
I am assuming that the '-' are null values.