![]() |
How to write code for find a word in excel?
For example , there is two textbox and one command button.
If i press the command button the text entered in the first textbox will find in xlworkbook and shown in second textbox with a msgbox ? All sugestions are welcomed. |
How to write code for find a word in excel?
Attach the following macro to a Forms button:
Sub mx_sub() Dim s As String, t As String t = Chr(10) & Chr(10) s = Application.InputBox("Enter the Word: ") For Each r In ActiveSheet.UsedRange With r If InStr(1, .Value, s) 0 Then MsgBox ("Found the Word in cell " & .Address & t & .Value) Exit Sub End If End With Next MsgBox ("Did not find the Word") End Sub -- Gary''s Student - gsnu2007 "Mx" wrote: For example , there is two textbox and one command button. If i press the command button the text entered in the first textbox will find in xlworkbook and shown in second textbox with a msgbox ? All sugestions are welcomed. |
How to write code for find a word in excel?
Dear,
Thanks to Reply my question? Could explain how the code works? Ya sure I try your coding and i get my result. Once again thank you. _ Jawahar S_ |
All times are GMT +1. The time now is 05:35 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com