ianonline wrote:
> Column D is an account balance with a new row for each day.
> Column E is the percentage difference.
> [....]
>
> I tried *=1-(D5/D4)* which gave me the correct figure, except positive
> when the difference was a reduction so should have been -XX%, not XX%.
> However this figure thn gave the wrong figures when it was an increase.


If you want to say "D5 is x% more (or less) than D4", the correct
formula is:

=d5/d4 - 1

Beware when D4 is zero. Mathematically, you cannot express a
percentage difference in that case. But people still like to see some
percentage difference. One approach (which not everyone likes) is:

=if(d4 = 0, 100%, d5/d4 - 1)

The choice of 100% is arbitrary. Other common choices are "" (blank
cell) or D5 (usually w-a-y too large, IMHO).