![]() |
running a sub when found
hello, I have an interresting problem. i'm writing a sub that must execute another sub when the criteria has been met. E.G. IF worksheetS("test").cells.find("testing") = true then (execute anther subroutine) I can't get anything to work. Regards, Niek ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~View and post usenet messages directly from http://www.ExcelForum.com/ |
running a sub when found
Niek,
If I understand your problem correctly, try something like Dim FoundCell As Range Set FoundCell = Worksheets("Test").Cells.Find("testing") If Not FoundCell Is Nothing Then ' string found DoSomething Else ' string not found End If -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "solo_razor" wrote in message ... hello, I have an interresting problem. i'm writing a sub that must execute another sub when the criteria has been met. E.G. IF worksheetS("test").cells.find("testing") = true then (execute anther subroutine) I can't get anything to work. Regards, Niek ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~View and post usenet messages directly from http://www.ExcelForum.com/ |
running a sub when found
Not the best way but it seems to work.
Sub iffound() On Error Resume Next If Worksheets("Sheet5").Cells.Find("ff") = "ff" Then MsgBox "Hi" End Sub but this also works Sub iffound() On Error Resume Next If Worksheets("Sheet5").Cells.Find("fff") = "ff" Then MsgBox "Hi" End Sub and this doesn't Sub iffound() On Error Resume Next If Worksheets("Sheet5").Cells.Find("ff") = "fff" Then MsgBox "Hi" End Sub -- Don Guillett SalesAid Software "solo_razor" wrote in message ... hello, I have an interresting problem. i'm writing a sub that must execute another sub when the criteria has been met. E.G. IF worksheetS("test").cells.find("testing") = true then (execute anther subroutine) I can't get anything to work. Regards, Niek ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~View and post usenet messages directly from http://www.ExcelForum.com/ |
All times are GMT +1. The time now is 02:09 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com