how do i round decimal if 2.3=2.5 2.7=2.5 & 2.8=3.0

R

Rick Rothstein \(MVP - VB\)

Make sure you have the Analysis ToolPak Add-In loaded...

=MROUND(A1,0.5)

Rick
 
M

MartinW

And if you don't want to load the Analysis Tool Pack try this,
=ROUND(A1/0.5,0)*0.5

HTH
Martin
 
Top