new_trader
Legendary member
- Messages
- 6,770
- Likes
- 1,656
D5=ROUND(D4+0.005,3) and fill down. To remove the pesky floating point number problems.
Grant,
This solution is OK, but if you are going to use a logical test such as =,<,> and your data increments in 0.005 steps, you will be better off using:
D5=ROUND((D4/0.005),0)*0.005
if I remember rightly, this is where you had trouble last time with an 'IF' condition.