Smart Macro required!

bish01

New Member
Joined
Oct 7, 2002
Messages
1
Apologies for this.... Can someone write a macro for me that will make a circle or icon change it's size and colour depending on the cell data size (e.g. 16 = small, 32 = med etc.)I would be grateful.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Welcome bish01,

To write a macro, we need to know more details what you want.
Following code is just sample, so try it and let us have your comment. :biggrin:

'Put this code on ThisWorkbook Module
<PRE>
Private Sub<FONT color=red> Workbook</FONT>_Open()

<FONT color=red>With </FONT>ActiveSheet

<FONT color=red>With </FONT>.[A1:E1]

.Value = Array("Top", "Left", "Width", "Height", "ForeColor")

.Font.Bold =<FONT color=red> True</FONT>

.Offset(1).Value = Array(100, 100, 100, 100, 12)

.AutoFormat Format:=xlRangeAutoFormatLocalFormat4

.EntireColumn.AutoFit

<FONT color=red>End With</FONT>

<FONT color=red>End With</FONT>

ActiveWindow.DisplayGridlines =<FONT color=red> False</FONT>

<FONT color=red>End Sub</FONT>
</PRE>

'Put this code on Sheet Module
<PRE>


<FONT color=red>Private <FONT color=red>Sub </FONT></FONT>Worksheet_Change(<FONT color=red>ByVal</FONT> Target <FONT color=red>As</FONT> Excel.Range)

<FONT color=red>Const </FONT>strShpName <FONT color=red>As</FONT><FONT color=red> String</FONT> = "MyCircle"

<FONT color=red>Dim </FONT>shpCircle <FONT color=red>As</FONT> Shape

<FONT color=red>Dim </FONT>sngX <FONT color=red>As</FONT><FONT color=red> Single</FONT>

<FONT color=red>If </FONT>Target.Count > 1<FONT color=red> Then </FONT><FONT color=red>GoTo</FONT> Terminate

<FONT color=red>If </FONT>Not IsNumeric(Target.Value)<FONT color=red> Then </FONT><FONT color=red>GoTo</FONT> Terminate



sngX = Target.Value



<FONT color=red>On Error</FONT> <FONT color=red>Resume </FONT>Next

<FONT color=red>Set </FONT>shpCircle = ActiveSheet.Shapes(strShpName)

<FONT color=red>If </FONT>shpCircle Is<FONT color=red> Nothing</FONT> Then

<FONT color=red>Set </FONT>shpCircle = ActiveSheet.Shapes.AddShape(msoShapeOval, 50, 50, 50, 50)

shpCircle.Name = strShpName

<FONT color=red>End If</FONT>

Err.Clear

<FONT color=red>On Error</FONT> <FONT color=red>GoTo</FONT> 0



<FONT color=red>With </FONT>shpCircle

Select <FONT color=red>Case </FONT>Target.Address(0, 0)

<FONT color=red>Case </FONT>"A2" <FONT color=#339966>'Top
</FONT>
.Top = sngX

<FONT color=red>Case </FONT>"B2" <FONT color=#339966>'Left
</FONT>
.Left = sngX

<FONT color=red>Case </FONT>"C2" <FONT color=#339966>'Width
</FONT>
.Width = sngX

<FONT color=red>Case </FONT>"D2" <FONT color=#339966>'Height
</FONT>
.Height = sngX

<FONT color=red>Case </FONT>"E2" <FONT color=#339966>'ForeColor
</FONT>
<FONT color=red>On Error</FONT> <FONT color=red>Resume </FONT>Next

.Fill.ForeColor.SchemeColor = CLng(sngX)

<FONT color=red>If </FONT>Not Err.Number = 0<FONT color=red> Then </FONT>MsgBox Err.Description

Err.Clear

<FONT color=red>End Select</FONT>

<FONT color=red>End With</FONT>

Terminate:

<FONT color=red>Set </FONT>shpCircle =<FONT color=red> Nothing</FONT>

<FONT color=red>End Sub</FONT>




</PRE>
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,749
Members
449,050
Latest member
excelknuckles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top