• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to make arrow size change with cell value?

Dear listers,

I would appreciate help with this. I have added an upward/downward arrow in a cell using an Excel symbol. I would like the height and fatness of the arrow to change with the value of a cell. So if say the value of cell A1 changes from 10 to 50, then I would like the arrow to become proportionately taller and fatter (values range between 0 and 100). Any help would be appreciated.

Thank you!
 
Plz Try this in Worksheet1 Code:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
ScreenUpdating = False
Worksheets("sheet1").Activate
Range("A1").Font.Size = 10 + Round(Range("B1") / 5)
ScreenUpdating = True
End Sub
 

Attachments

  • Bo2633.xlsm
    15.8 KB · Views: 30
Last edited:
Can you provide screen shoot of what you are looking for. On my pc the website keep showing this:

untitled.JPG

If you can show 2-3 pics showing how fastness increases then it will be helpful.
 
Back
Top