Hi,
Yes, it is. The custom format you're looking for is:
#,##0.00
and this will always display 2 decimal places.
So that decimal places are not shown when the cell contains a whole number you could use a conditional formatting rule with a formula like this:
=A1=TRUNC(A1)
and setting the conditional formatting custom format as #,##0
|