Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
How I show a picture or icon when the value in a cell 50 and other icon or
picture when <= 50 ? also Ideas? Marina |
#2
![]() |
|||
|
|||
![]()
I don't know how your getting the number 50.
Iif it is from a formula result, right click on the Worksheet tab View Code: and paste this code in: This assumes there are 2 pictures on the sheet. one named "Pic1" and another named "Pic2". Change these names accordingly, either in the code or the pitures on the sheet. This also assumes that the cell that will have the 50 is cells B1 (Row1,Col2 = Cells(1,2)) change this to the correct cell. Option Explicit Private Sub Worksheet_Calculate() If Cells(1, 2).Value = 50 Then ActiveSheet.Shapes("Pic1").Visible = True ActiveSheet.Shapes("Pic2").Visible = False Else If Cells(1, 2).Value 50 Then ActiveSheet.Shapes("Pic1").Visible = False ActiveSheet.Shapes("Pic2").Visible = True Else ActiveSheet.Shapes("Pic1").Visible = False ActiveSheet.Shapes("Pic2").Visible = False End If End If End Sub
__________________
Justin Labenne www.jlxl.net Last edited by JustinLabenne : June 14th 05 at 12:03 AM Reason: Addition |
#3
![]() |
|||
|
|||
![]()
J.E. McGimpsey has a routine you may like:
http://www.mcgimpsey.com/excel/lookuppics.html Marina Limeira wrote: How I show a picture or icon when the value in a cell 50 and other icon or picture when <= 50 ? also Ideas? Marina -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
The merge center icon remains gray and does not work. | Excel Discussion (Misc queries) | |||
currency icon (british pounds) | Excel Discussion (Misc queries) | |||
How can I delete similar rows in excel workbook with many sheets? | Excel Worksheet Functions | |||
Macors do not run correctly from icon | Excel Discussion (Misc queries) | |||
Cant add an icon to toolbars | Excel Discussion (Misc queries) |