Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to determin a telephone number.
I know that if a telephone number ends in a one (1) then it comes from a certain type of service, so what I need is a formular that says if (Tel No) does not end in 1 then Highway otherwise ISDN I can then copy this formular to the other numbers in the range |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(RIGHT(A1,1)="1","ISDN","Highway")
for a telephone number in cell A1. HTH -- Allllen "Sean" wrote: I want to determin a telephone number. I know that if a telephone number ends in a one (1) then it comes from a certain type of service, so what I need is a formular that says if (Tel No) does not end in 1 then Highway otherwise ISDN I can then copy this formular to the other numbers in the range |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(RIGHT(A1,1)="1","ISDN","Highway")
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Sean" wrote in message ... I want to determin a telephone number. I know that if a telephone number ends in a one (1) then it comes from a certain type of service, so what I need is a formular that says if (Tel No) does not end in 1 then Highway otherwise ISDN I can then copy this formular to the other numbers in the range |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=If(Right('Tel No',1)="1","ISDN","Highway")
'Tel No' is the cell reference Sean wrote: I want to determin a telephone number. I know that if a telephone number ends in a one (1) then it comes from a certain type of service, so what I need is a formular that says if (Tel No) does not end in 1 then Highway otherwise ISDN I can then copy this formular to the other numbers in the range |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excell-How to add the number of cells containing text? = a sum | Excel Worksheet Functions | |||
Generating (in a random order)each number once from a given number | Excel Worksheet Functions | |||
Change number format from text to number? | New Users to Excel | |||
vlookup with more than number to be retrieved | Excel Worksheet Functions | |||
Count Number of Characters in a cell? | Excel Discussion (Misc queries) |