Thread: round figures
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default round figures

Or a variation on the same theme:
=SUMPRODUCT(--(MOD(A2:A6,1)=0),A2:A6)
--
David Biddulph

"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
One way:
=SUMPRODUCT(--(INT(A2:A6)=A2:A6),A2:A6)
--
David Biddulph

"ekkeindoha" wrote in message
...
If I enter the numbers as follows

1 2 2.5 3.4 6

it should only add up 1,2 and 6 as it are full figures and not .5 and .4
figures

Thanx