ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   IF with icon or similar (https://www.excelbanter.com/excel-discussion-misc-queries/30444-if-icon-similar.html)

Marina Limeira

IF with icon or similar
 
How I show a picture or icon when the value in a cell 50 and other icon or
picture when <= 50 ?

also Ideas?

Marina



JustinLabenne

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

Dave Peterson

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


All times are GMT +1. The time now is 12:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com