Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello All,
I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Any help would be greatly appreciated! Bryce |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(isnumber(search("F",a1)),"fruit"," ")
if case sensitive needed replace the "search" function with "find" "Outlook, eh?" wrote: Hello All, I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Any help would be greatly appreciated! Bryce |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am wanting to move one of three letters from one column to another and
then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Perhaps this way... =IF(SEARCH("F",A1),"FRUIT") SEARCH is non-case-sensitive, use FIND if you want it to be case-sensitive. Rick |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am wanting to move one of three letters from one column to another and
then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Perhaps this way... =IF(SEARCH("F",A1),"FRUIT") Wow! I screwed up two parts of that... =IF(ISNUMBER(SEARCH("F",A1)),"FRUIT","") Rick |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Rick,
Thanks so much, it would like a charm! But one more thing (I forgot). I would like to do this for an entire column, which is from A1:A2568, and paste it in the column next to it, B1:B2568. Any ideas? Bryce "Rick Rothstein (MVP - VB)" wrote: I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Perhaps this way... =IF(SEARCH("F",A1),"FRUIT") Wow! I screwed up two parts of that... =IF(ISNUMBER(SEARCH("F",A1)),"FRUIT","") Rick |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Rick it worked very well! However, I forgot to mention one thing. I
would like to use your forumula to look through an entire column A2:A2568 and if there is an "F", I would like to insert the word "FRUIT", in the column next to it (B2:B2568). Thanks so much for your help, I really, really appreciate it! Bryce "Rick Rothstein (MVP - VB)" wrote: I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Perhaps this way... =IF(SEARCH("F",A1),"FRUIT") Wow! I screwed up two parts of that... =IF(ISNUMBER(SEARCH("F",A1)),"FRUIT","") Rick |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(LEFT(A1,1)="F","Fruit","not found")
"Outlook, eh?" wrote: Hello All, I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Any help would be greatly appreciated! Bryce |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Rick it worked very well! However, I forgot to mention one thing. I
would like to use your forumula to look through an entire column A2:A2568 and if there is an "F", I would like to insert the word "FRUIT", in the column next to it (B2:B2568). You will have to copy the formula down through the entire column. If you are not sure of how to do that, highlight the cell with the formula that "works well", look at the bottom right corner of that cell for a very small black square... place your cursor over the black square (the cursor will turn into a cross... a thin plus sign), left click and drag down through all of the cells in the column. Doing this will make the relative A1 (or, if you are starting in row 2, A2) reference change with each row so the formula is adjusted to the row it is on. Rick |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you so much! You have saved our non-profit about 8 hours!!
"Teethless mama" wrote: =IF(LEFT(A1,1)="F","Fruit","not found") "Outlook, eh?" wrote: Hello All, I am wanting to move one of three letters from one column to another and then make a word from it's beginning letter, i.e., F would become FRUIT. For example: COLUMN A COLUMN B F,X,U =IF(A1="F","FRUIT") This works fine if it were just F, but the comma and additional letters indicate FALSE. I have tried "F&", "F*", "F?" Any help would be greatly appreciated! Bryce |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNT or COUNTIF using wildcard text? | Excel Worksheet Functions | |||
Excel custom autofilter- how to find wildcard characters but not as wildcards (e.g. "?") in a cell | Excel Discussion (Misc queries) | |||
How do I count wildcard text meeting certain criteria in EXCEL? | Excel Worksheet Functions | |||
can you find specific text in a string ignoring any other text | Excel Discussion (Misc queries) | |||
How do you find and replace a Wildcard character in Excel? | Excel Discussion (Misc queries) |