From: Vladek on
I'm making price list. 150 articles and I want that every price have last
number 9.
Ex. 1651,00 = 1659,00
1255,00 = 1259,00
etc...

Help!
From: Jarek Kujawa on
=INT(A1/10)*10+9

HIH

On 26 Mar, 09:49, Vladek <Vla...(a)discussions.microsoft.com> wrote:
> I'm making price list. 150 articles and I want that every price have last
> number 9.
> Ex. 1651,00 = 1659,00
>      1255,00 = 1259,00
> etc...
>
> Help!

From: Mike H on
Hi,

Try this

=CEILING(A1,10)-1
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Vladek" wrote:

> I'm making price list. 150 articles and I want that every price have last
> number 9.
> Ex. 1651,00 = 1659,00
> 1255,00 = 1259,00
> etc...
>
> Help!
From: Vladek on
Thx, it works! :))
This helps me a lot!

Korisnik "Jarek Kujawa" napisao je:

> =INT(A1/10)*10+9
>
> HIH
>
> On 26 Mar, 09:49, Vladek <Vla...(a)discussions.microsoft.com> wrote:
> > I'm making price list. 150 articles and I want that every price have last
> > number 9.
> > Ex. 1651,00 = 1659,00
> > 1255,00 = 1259,00
> > etc...
> >
> > Help!
>
> .
>
From: Vladek on
Thanks,

it's working!



Korisnik "Mike H" napisao je:

> Hi,
>
> Try this
>
> =CEILING(A1,10)-1
> --
> Mike
>
> When competing hypotheses are otherwise equal, adopt the hypothesis that
> introduces the fewest assumptions while still sufficiently answering the
> question.
>
>
> "Vladek" wrote:
>
> > I'm making price list. 150 articles and I want that every price have last
> > number 9.
> > Ex. 1651,00 = 1659,00
> > 1255,00 = 1259,00
> > etc...
> >
> > Help!