LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 104
Default SCROLL ON CELL CHANGE

Following macro is different from what you want ("change in B1") but more
flexible. It assumes that you've put the cursor into the column of the data
table that you want to search (so it works on any column). It pops up an
inputbox where you would input "para". Upon Enter the screen scrolls to the
first cells which starts with "para" (the normal Excel Find command would
find para anywhere in the cell - that's not what you want) .The search is
not case sensitive, so it will find Paracetamol, paracetamol or PARAcetamol.

I recommend that you assign a keyboard shortcut to this macro: In the Excel
menu go to Tools-Macro-Macros-[select macro]-Options.

Cheers,
Joerg Mochikun

Sub QuickSearch()
Dim SearchString As String
SearchString = InputBox("Search for...")
For Each cell In
Range(ActiveCell.CurrentRegion.Columns(ActiveCell. Column).Address)
If LCase(SearchString) = Left(LCase(CStr(cell.Text)),
Len(SearchString)) Then
cell.Select
Exit Sub
End If
Next cell
End Sub



"sunilpatel" wrote in message
...
hi from a newbie

in column A i have a very long list of medical products in alphabetical
order.
I keep having to scroll up and down all day to find items. I would like a
sheet macro to detect a cell change e.g in B1 i enter "para" and column A
scrolls down until "Paracetamol" is visible on the screen in column A.
(i.e column A automatically scroll to line 400 where cell A400 is
Paracetamol).

Thanks in advance

Sunil



 
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
How do I put a scroll bar within a cell to change its contents? kerry4477 Excel Discussion (Misc queries) 1 April 29th 08 08:09 PM
Adding a scroll bar to a cell to scroll its contents. SkyKid Excel Programming 9 October 17th 07 09:14 PM
Can the scroll wheel be used to change cell values NMorris Excel Discussion (Misc queries) 2 October 24th 06 04:52 PM
Scroll bar to change value in cell - PART 2 [email protected] Excel Programming 0 July 19th 06 04:40 AM
How do I change scroll speed? fido Setting up and Configuration of Excel 4 March 18th 05 01:52 AM


All times are GMT +1. The time now is 11:02 PM.

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"