Hi Folks,
Just a quickie (I think/hope)... :roll:
I had a formula in a spreadsheet cell:
=TRUNC(MAX(((MAX(E5-5,(E8-4)))/10),1))
that I needed to move into code, i.e.:
Sheet1.Range("J18") = TRUNC(Max(((Max(E5 - 5, (E8 - 4))) / 10), 1))
The VBE/Compiler doesn't like it in this form.
After...