I have a column of negative times which I wish to sum and average.
formula that brings these figures is
IF(S738="Remove/Post",O738-T738,IFERROR(IF((Q738+"00:00:01")-O738<0,"-"&TEXT(ABS((Q738+"00:00:01")-O738),"h:mm"),(Q738+"00:00:01")-O738),""))
Now, as you see I'm putting the "-" in and text so its show as -0:00.
However if I use this
IF(S348="Remove/Post",O348-T348,IFERROR(IF((Q348+"00:00:01")-O348<0,ABS((Q348+"00:00:01")-O348),(Q348+"00:00:01")-O348),""))
it shows as a 0:00 and still as text as the figure is not right justified as number should be.
I assume I need to get the data out of text and negative in order to do any calculations??
formula that brings these figures is
IF(S738="Remove/Post",O738-T738,IFERROR(IF((Q738+"00:00:01")-O738<0,"-"&TEXT(ABS((Q738+"00:00:01")-O738),"h:mm"),(Q738+"00:00:01")-O738),""))
Now, as you see I'm putting the "-" in and text so its show as -0:00.
However if I use this
IF(S348="Remove/Post",O348-T348,IFERROR(IF((Q348+"00:00:01")-O348<0,ABS((Q348+"00:00:01")-O348),(Q348+"00:00:01")-O348),""))
it shows as a 0:00 and still as text as the figure is not right justified as number should be.
I assume I need to get the data out of text and negative in order to do any calculations??