Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Search button in a speadsheet

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Search button in a speadsheet

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Search button in a speadsheet

Thanks so much for your info, but I have no idea how to attach this macro to
the search button.
--
thadi


"Joel" wrote:

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Search button in a speadsheet

Do you know anythiong about macro programming? Be more specific about the
search and I will help

"Tasmania" wrote:

Thanks so much for your info, but I have no idea how to attach this macro to
the search button.
--
thadi


"Joel" wrote:

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Search button in a speadsheet

Thanks. I do not know macro programming. Search button should open a page
with a textbox where user will type in the search field and press ok button.
then it will hilight the row with that search field.
Or do you have any better search idea?
--
thadi


"Joel" wrote:

Do you know anythiong about macro programming? Be more specific about the
search and I will help

"Tasmania" wrote:

Thanks so much for your info, but I have no idea how to attach this macro to
the search button.
--
thadi


"Joel" wrote:

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Search button in a speadsheet

Typing Cntl F and using the excel build in search is probaly the best way for
you to proceed. The Find All option is nice. It brings up all the items
found and puts them into the Find window. I use this feature alot.

"Tasmania" wrote:

Thanks. I do not know macro programming. Search button should open a page
with a textbox where user will type in the search field and press ok button.
then it will hilight the row with that search field.
Or do you have any better search idea?
--
thadi


"Joel" wrote:

Do you know anythiong about macro programming? Be more specific about the
search and I will help

"Tasmania" wrote:

Thanks so much for your info, but I have no idea how to attach this macro to
the search button.
--
thadi


"Joel" wrote:

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Search button in a speadsheet

Yes, I know about the ctrl-f. The spreadsheet has three tabs and there are
170,000 rows of data altogether. It will be easy for the user to have some
kind of search button to look for what they want. Ctrl-f is a great tool,
but the user has to go to each tab to search for that specific field.
What do you think? Thanks for all your input.
--
thadi


"Joel" wrote:

Typing Cntl F and using the excel build in search is probaly the best way for
you to proceed. The Find All option is nice. It brings up all the items
found and puts them into the Find window. I use this feature alot.

"Tasmania" wrote:

Thanks. I do not know macro programming. Search button should open a page
with a textbox where user will type in the search field and press ok button.
then it will hilight the row with that search field.
Or do you have any better search idea?
--
thadi


"Joel" wrote:

Do you know anythiong about macro programming? Be more specific about the
search and I will help

"Tasmania" wrote:

Thanks so much for your info, but I have no idea how to attach this macro to
the search button.
--
thadi


"Joel" wrote:

You can do finds using the Edit Menu - Find using shortcut Key Cntl F. You
can setup your own shortcut keys after a macro is written by go to Tools Menu
- Macro - Macros. Then selecting Options.

A button can be added to the worksheet to call a macro. go to view Menu -
toolsbars - Control toolbar. Add Commandbutton to worksheet. Then double
click button. VBA window will appear where you can add macro instructions.

for beginner, you can perform a learn macro (tools Menu - Macro) and record
the command you use when doing the search manually. Then insert macro into
the command button click macro.

"Tasmania" wrote:

Hi. I want to put search button in a Excel spreadsheet. I recently started
Excel. I am a Access user. Does anyone have any clue? Any suggestion will
be greatly appreciated.
--
thadi

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Search button in a speadsheet

User can search the entire workbook, not just one sheet at a time.

See under CTRL +f and options to search workbook.


Gord Dibben MS Excel MVP

On Mon, 7 May 2007 07:08:02 -0700, Tasmania
wrote:

Yes, I know about the ctrl-f. The spreadsheet has three tabs and there are
170,000 rows of data altogether. It will be easy for the user to have some
kind of search button to look for what they want. Ctrl-f is a great tool,
but the user has to go to each tab to search for that specific field.
What do you think? Thanks for all your input.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
macro button to be associated with specific speadsheet Racesmith Excel Programming 6 August 31st 06 07:32 PM
macro button to be associated with specific speadsheet Racesmith Excel Programming 0 August 30th 06 04:44 PM
Search Button mica Excel Discussion (Misc queries) 2 March 9th 06 11:26 PM
Creating a search button jaya14 Excel Programming 1 June 24th 05 01:51 AM
Button to allow a search Fred Excel Programming 4 February 10th 05 02:13 PM


All times are GMT +1. The time now is 02:35 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"