Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What I'm trying to do is circle cells(J14 and R14) based on thier
value(empty cell no circle, occupied cell circled). I can only get one circle to appear not two, and to make the circle dissappear I have to manually run another macro. This is what I have so far, and is it possible to all the code on the active sheet only? for the workbook I have: Sub Hide_It() ActiveSheet.Shapes("Oval 2").Visible = False ActiveSheet.Shapes("Oval 6").Visible = False End Sub and for the Active sheet I have: Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Target.Count 1 Then Exit Sub With Range("j14") If .Value 0 Then ActiveSheet.Shapes("Oval 2").Visible = True End If End With End Sub any help would be greatful, thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Formatting based on other cells | Excel Worksheet Functions | |||
how do i format a cell based on format of a range of cells? | Excel Discussion (Misc queries) | |||
Applying conditional formatting to cell based on another cell's in | Excel Discussion (Misc queries) | |||
Add cells from a range based on 2 conditions from 2 other ranges | Excel Worksheet Functions | |||
Calculate percentage based on cells with conditional formatting | New Users to Excel |