Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I do not know if this is possible, but if someone knows how to do it, will be grateful. So the problem is that i want to show a picture when a value i negative, and another when is positive, can i do it? Thanks! -- RSise ----------------------------------------------------------------------- RSisep's Profile: http://www.excelforum.com/member.php...fo&userid=3574 View this thread: http://www.excelforum.com/showthread.php?threadid=55522 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would do it like this - Do it in two steps.
First: You need to place some code in the worksheet or workbook excel object to evaluate the cell you're looking at each time it calculates. Like this: Private Sub Worksheet_Calculate() If Cells(1, "A") = "blue" Then TogglePic "ON" Else TogglePic "OFF" End If End Sub This will evaluate then toggle the pic on or off via the following code: Sub TogglePic(OnOff As String) On Error Resume Next If OnOff = "ON" Then Sheets("Sheet3").Shapes("Picture 1").Visible = True If OnOff = "OFF" Then Sheets("Sheet3").Shapes("Picture 1").Visible = False End Sub Regards, Jamie RSisep wrote: I do not know if this is possible, but if someone knows how to do it, i will be grateful. So the problem is that i want to show a picture when a value is negative, and another when is positive, can i do it? Thanks!! -- RSisep ------------------------------------------------------------------------ RSisep's Profile: http://www.excelforum.com/member.php...o&userid=35741 View this thread: http://www.excelforum.com/showthread...hreadid=555223 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks jseven! -- RSisep ------------------------------------------------------------------------ RSisep's Profile: http://www.excelforum.com/member.php...o&userid=35741 View this thread: http://www.excelforum.com/showthread...hreadid=555223 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
pictures of | Setting up and Configuration of Excel | |||
How do you export pictures from my pictures file into a word docu | New Users to Excel | |||
Storing Clip Art pictures in My Pictures folder | Excel Discussion (Misc queries) | |||
Excel's Compress Pictures or deleting pictures doesn't seem work | Excel Discussion (Misc queries) | |||
pictures | Excel Programming |