Macroprogramming

  • Thread starter Thread starter Stefan
  • Start date Start date
S

Stefan

Hi,

I looking for a macro that should do the following procedure:

Show all cell with a certain content, for example show cells with value
"cheese" and cells with value "eggs", do not show zeroes, empty and other
cell values.

The macro should do the procedure within a certain cellrange for example
f3:f54.

Filtering is not possible due to users lack of excelexperience and that I´m
working in excel 2003.

Thanks

Stefan Carlsson
 
You cna use the macro below to select a list of words and then select a range
of cell and the macro willl color the cells green

Sub SelectCells()

Set wordList = Application.InputBox( _
prompt:="Select WordList", _
Title:="Get Words", Type:=8)

Set MyRange = Application.InputBox( _
prompt:="Select Range", _
Title:="Get Range", Type:=8)


For Each cell In MyRange
For Each word In wordList
If InStr(cell.Value, word) > 0 Then
cell.Interior.ColorIndex = 4
Exit For
End If

Next word

Next cell
 
Thanks Joel, I will try that solution.

Clarification:

In the excelsheet I will have a couple of buttons each button will execute a
certain procedure.

Button 1
Will show: cells with value for example 1, 4 and 5 excluding zeroes, empty
cells and all other values.
Button 2
Will show: cells with value 1, 3 and 7 excluding zeroes, empty cells and all
other values.

The range will be from example f3:f34
 
Back
Top