Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to Find characters "temporary=*" in cells with * being a
wildcard. The text after "temporary=" could vary per cell. Then I want to Select that text and delete it from the cell. I still want the characters that appear before "temporary=*." Any suggestions? Thanks, Nick |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Fri, 03 Aug 2007 14:45:46 -0700, wrote:
I want to Find characters "temporary=*" in cells with * being a wildcard. The text after "temporary=" could vary per cell. Then I want to Select that text and delete it from the cell. I still want the characters that appear before "temporary=*." Any suggestions? Thanks, Nick =LEFT(A1,FIND("temporary=",A1)-1) --ron |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You may not need a VBA solution....as long as you don't have an
extraordinarily large number of cells to change AND those cells only contain ONE equal sign (=) Try this: Select your range of cells to be impacted [Ctrl]+F..........a shortcut for <edit<find Find what: *temporary=* Click [Find All] (that will select the first matching cell) [Ctrl]+A........that will select the rest of the matching cells Click the Replace tab Find what: =* Replace with: = Click [Replace All] (that will clear all text after the equal sign in the matched cells) Does that help? *********** Regards, Ron XL2003, WinXP " wrote: I want to Find characters "temporary=*" in cells with * being a wildcard. The text after "temporary=" could vary per cell. Then I want to Select that text and delete it from the cell. I still want the characters that appear before "temporary=*." Any suggestions? Thanks, Nick |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ron,
I appreciate the assistance. I going to try this later tonight. Nick |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to find and replace with blanks or actually delete row | Excel Worksheet Functions | |||
find text in cell and replace it with part of the text in that ce. | Excel Discussion (Misc queries) | |||
find cell that contains text and delete entre row | Excel Discussion (Misc queries) | |||
How can I use find and replace to delete a word in Excel? | Excel Discussion (Misc queries) | |||
find and delete text, find a 10-digit number and put it in a textbox | Excel Programming |