Probably simple Excell question

Soldato
Joined
3 Jun 2005
Posts
7,614
I need what is probably a very simple spreadsheet, but I only know the very basics of Excell.

I need the A, B & C cells to be rounded down to the nearest 200, then divided by 200, then multiplied together and the answer displayed in D as shown below.

KfEmkWM.gif
 
Why not just post this in the programming thread you've already got covering the same thing?

Paste into D1 and drag down

=SUM(INT(A1/200)*INT(B1/200)*INT(C1/200))
 
Back
Top Bottom