From: Manos on
Dear All

i have a range of coding where some of them are ending in letter I.
There is any way to group all of them?
Or is it possible to create an if function when the code in ending in I
gives true and else false.

Thanks in advance for your valuable time....

From: Roger Govier on
Hi Manos

=IF(RIGHT(A1,1)="I",True,False)
--
Regards
Roger Govier

Manos wrote:
> Dear All
>
> i have a range of coding where some of them are ending in letter I.
> There is any way to group all of them?
> Or is it possible to create an if function when the code in ending in I
> gives true and else false.
>
> Thanks in advance for your valuable time....
>
From: Mike H on
Maybe this

=RIGHT(A1,1)="I"
--
Mike

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


"Manos" wrote:

> Dear All
>
> i have a range of coding where some of them are ending in letter I.
> There is any way to group all of them?
> Or is it possible to create an if function when the code in ending in I
> gives true and else false.
>
> Thanks in advance for your valuable time....
>