Hello Gary Thornton
To suppress zero and negative results in your spreadsheet, you can use an IF formula like this:
=IF(A1<=0, "", A1)
This formula checks if the value is zero or negative; if it is, the cell is left blank (""); otherwise, it displays the original value. You can apply this...