Preskoči na glavno vsebino

Kako samodejno spremeniti velikost oblike glede na določeno vrednost celice v Excelu?

Če želite samodejno spremeniti velikost oblike glede na vrednost določene celice, vam lahko pomaga ta članek.

Samodejno spremeni velikost oblike na podlagi določene vrednosti celice s kodo VBA


Samodejno spremeni velikost oblike na podlagi določene vrednosti celice s kodo VBA

Naslednja koda VBA vam lahko pomaga spremeniti določeno velikost oblike glede na določeno vrednost celice na trenutnem delovnem listu. Naredite naslednje.

1. Z desno miškino tipko kliknite jeziček lista z obliko, ki jo želite spremeniti, in nato kliknite Ogled kode v meniju z desnim klikom.

2. V Ljubljani Microsoft Visual Basic za aplikacije okno, kopirajte in prilepite naslednjo kodo VBA v okno Code.

Koda VBA: Samodejno spremeni velikost oblike na podlagi določene vrednosti celice v Excelu

Private Sub Worksheet_Change(ByVal Target As Range)
    On Error Resume Next
    If Target.Row = 2 And Target.Column = 1 Then
        Call SizeCircle("Oval 2", Val(Target.Value))
    End If
End Sub
Sub SizeCircle(Name As String, Diameter)
    Dim xCenterX As Single
    Dim xCenterY As Single
    Dim xCircle As Shape
    Dim xDiameter As Single
    On Error GoTo ExitSub
    xDiameter = Diameter
    If xDiameter > 10 Then xDiameter = 10
    If xDiameter < 1 Then xDiameter = 1
    Set xCircle = ActiveSheet.Shapes(Name)
    With xCircle
        xCenterX = .Left + (.Width / 2)
        xCenterY = .Top + (.Height / 2)
        .Width = Application.CentimetersToPoints(xDiameter)
        .Height = Application.CentimetersToPoints(xDiameter)
        .Left = xCenterX - (.Width / 2)
        .Top = xCenterY - (.Height / 2)
    End With
ExitSub:
End Sub

Opombe: V kodi je »Ovalni 2"Je ime oblike, spremenili boste njegovo velikost. In Vrstica = 2, Stolpec = 1 pomeni, da bo velikost oblike “Oval 2” spremenjena z vrednostjo v A2. Prosimo, spremenite jih po potrebi.

Za samodejno spreminjanje velikosti več oblik na podlagi različnih vrednosti celic uporabite spodnjo kodo VBA.

Koda VBA: Samodejno prilagodi velikost več oblik na podlagi vrednosti določenih celic v Excelu

Private Sub Worksheet_Change(ByVal Target As Range)
    Dim xAddress As String
    On Error Resume Next
    If Target.CountLarge = 1 Then
        xAddress = Target.Address(0, 0)
        If xAddress = "A1" Then
            Call SizeCircle("Oval 1", Val(Target.Value))
        ElseIf xAddress = "A2" Then
            Call SizeCircle("Smiley Face 3", Val(Target.Value))
        ElseIf xAddress = "A3" Then
            Call SizeCircle("Heart 2", Val(Target.Value))
        End If
    End If
End Sub

Sub SizeCircle(Name As String, Diameter)
    Dim xCenterX As Single
    Dim xCenterY As Single
    Dim xCircle As Shape
    Dim xDiameter As Single
    On Error GoTo ExitSub
    xDiameter = Diameter
    If xDiameter > 10 Then xDiameter = 10
    If xDiameter < 1 Then xDiameter = 1
    Set xCircle = ActiveSheet.Shapes(Name)
    With xCircle
        xCenterX = .Left + (.Width / 2)
        xCenterY = .Top + (.Height / 2)
        .Width = Application.CentimetersToPoints(xDiameter)
        .Height = Application.CentimetersToPoints(xDiameter)
        .Left = xCenterX - (.Width / 2)
        .Top = xCenterY - (.Height / 2)
    End With
ExitSub:
End Sub

Opombe:

1) V kodi jeOvalni 1""Smeška 3"In"Srce 3"So imena oblik, ki jih boste samodejno spremenili. In A1, A2 inA3 so celice, na podlagi katerih vrednosti boste samodejno spreminjali velikost oblik.
2) Če želite dodati več oblik, dodajte črte "ElseIf xAddress = "A3" Potem"in "Klic velikosti klica (" Srce 2 ", Val (Target.Value))"nad prvim"Konec Če"v kodo. In spremenite naslov celice in ime oblike glede na vaše potrebe.

3. Pritisnite druga + Q tipke hkrati, da zaprete tipko Microsoft Visual Basic za aplikacije okno.

Od zdaj naprej, ko spremenite vrednost v celici A2, se velikost oblike Oval 2 samodejno spremeni. Oglejte si posnetek zaslona:

Ali pa spremenite vrednosti v celicah A1, A2 in A3, da samodejno spremenite velikost ustreznih oblik "Oval 1", "Smiley Face 3" in "Heart 3". Oglejte si posnetek zaslona:

Opombe: Velikost oblike se ne bo več spreminjala, ko bo vrednost celice večja od 10.


Seznam in izvoz vseh oblik v trenutnem Excelovem delovnem zvezku:

O Izvozi grafiko uporabnost Kutools za Excel vam pomaga hitro našteti vse oblike v trenutnem delovnem zvezku in jih lahko vse hkrati izvozite v določeno mapo, kot je prikazano na spodnjem posnetku zaslona shwon. Prenesite in preizkusite zdaj! (30-dnevna brezplačna pot)


Sorodni članki:

Najboljša pisarniška orodja za produktivnost

🤖 Kutools AI Aide: Revolucionirajte analizo podatkov na podlagi: Inteligentna izvedba   |  Ustvari kodo  |  Ustvarite formule po meri  |  Analizirajte podatke in ustvarite grafikone  |  Prikličite funkcije Kutools...
Priljubljene funkcije: Poiščite, označite ali identificirajte dvojnike   |  Izbriši prazne vrstice   |  Združite stolpce ali celice brez izgube podatkov   |   Krog brez formule ...
Super iskanje: Več kriterijev VLookup    Multiple Value VLookup  |   VLookup na več listih   |   Nejasno iskanje ....
Napredni spustni seznam: Hitro ustvarite spustni seznam   |  Odvisni spustni seznam   |  Večkrat izberite spustni seznam ....
Upravitelj stolpcev: Dodajte določeno število stolpcev  |  Premakni stolpce  |  Preklop stanja vidnosti skritih stolpcev  |  Primerjaj obsege in stolpce ...
Predstavljene funkcije: Mrežni fokus   |  Pogled oblikovanja   |   Velika vrstica formule    Upravitelj delovnih zvezkov in listov   |  Knjižnica virov (Samodejno besedilo)   |  Izbirnik datuma   |  Združite delovne liste   |  Šifriranje/dešifriranje celic    Pošljite e-pošto po seznamu   |  Super filter   |   Poseben filter (filter krepko/ležeče/prečrtano ...) ...
15 najboljših kompletov orodij12 Besedilo Orodja (dodajanje besedila, Odstrani znake,...)   |   50 + Graf Vrste (Gantt Chart,...)   |   40+ Praktično Formule (Izračunajte starost glede na rojstni dan,...)   |   19 vstavljanje Orodja (Vstavite kodo QR, Vstavi sliko s poti,...)   |   12 Pretvorba Orodja (Številke v besede, Pretvorba valut,...)   |   7 Spoji in razdeli Orodja (Napredne kombinirane vrstice, Razdeljene celice,...)   |   ... in več

Napolnite svoje Excelove spretnosti s Kutools za Excel in izkusite učinkovitost kot še nikoli prej. Kutools za Excel ponuja več kot 300 naprednih funkcij za povečanje produktivnosti in prihranek časa.  Kliknite tukaj, če želite pridobiti funkcijo, ki jo najbolj potrebujete...

Opis


Kartica Office prinaša vmesnik z zavihki v Office in poenostavi vaše delo

  • Omogočite urejanje in branje z zavihki v Wordu, Excelu, PowerPointu, Publisher, Access, Visio in Project.
  • Odprite in ustvarite več dokumentov v novih zavihkih istega okna in ne v novih oknih.
  • Poveča vašo produktivnost za 50%in vsak dan zmanjša na stotine klikov miške za vas!
Comments (17)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
We use spreadsheets that have many fill in circles on each page and we have as many as 16 pages. Everyone of the 'circles' has a different aspect ratio. Ideally I want all the circles to have a height of 0.1 and width of 0.1. Is there a way to reshape every one of these to be the same?
All the 'circles' have no fill and I'd like to be able to just click the circle and have it auto fill in black and when it's clicked again to remove the fill.

Here is an example from the spreadsheet, except the different sized circles didn't copy and paste. Imagine to the left of each there is a 'circle' and all are different height's and width's. For now I have to go to each one and change the height and width to 0.1 so they come out round.

INDOOR OUTDOOR GRADE
HEATED UNDER ROOF MEZZANINE
UNHEATED PARTIAL SIDES OTHER Module/Steel Structure
AMBIENT TEMPERATURE RANGE (°F) (5.1.2.1)

Can you help? Thanks

PS I inserted the code you gave above but it doesn't look like it changed the shape in that cell.
This comment was minimized by the moderator on the site
is there a way for this to work if the cell your using to set the size is the result of a formula rather than just a static value you manualy enter?
This comment was minimized by the moderator on the site
Hi mathnz,The VBA code below can help you solve the problem.You just need to change the value cells and the shape names in the code based on your own data.
<div data-tag="code">Private Sub Worksheet_Calculate()
'Updated by Extendoffice 20211105
On Error Resume Next
Call SizeCircle("Oval 1", Val(Range("A1").Value)) 'A1 is the value cell, Oval 1 is the shape name
Call SizeCircle("Smiley Face 2", Val(Range("A2").Value))
Call SizeCircle("Heart 3", Val(Range("A3").Value))

End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim xAddress As String
On Error Resume Next
If Target.CountLarge = 1 Then
xAddress = Target.Address(0, 0)
If xAddress = "A1" Then
Call SizeCircle("Oval 1", Val(Target.Value))
ElseIf xAddress = "A2" Then
Call SizeCircle("Smiley Face 2", Val(Target.Value))
ElseIf xAddress = "A3" Then
Call SizeCircle("Heart 3", Val(Target.Value))

End If
End If
End Sub

Sub SizeCircle(Name As String, Diameter)
Dim xCenterX As Single
Dim xCenterY As Single
Dim xCircle As Shape
Dim xDiameter As Single
On Error GoTo ExitSub
xDiameter = Diameter
If xDiameter > 10 Then xDiameter = 10
If xDiameter < 1 Then xDiameter = 1
Set xCircle = ActiveSheet.Shapes(Name)
With xCircle
xCenterX = .Left + (.Width / 2)
xCenterY = .Top + (.Height / 2)
.Width = Application.CentimetersToPoints(xDiameter)
.Height = Application.CentimetersToPoints(xDiameter)
.Left = xCenterX - (.Width / 2)
.Top = xCenterY - (.Height / 2)
End With
ExitSub:
End Sub

This comment was minimized by the moderator on the site
Hi Crytal
what if to determine the side of the cube, triangle, box that must be determined based on the length, width? Please help me

Thank You
chairil
This comment was minimized by the moderator on the site
Hi Chairil,
Sorry can't help you with that yet. Thanks for your comment.
This comment was minimized by the moderator on the site
Hi Crytal,

I would like to ask you, if there is a way to select color (red cell = red form) and name from specific cells . could it also be possible to create forms automatically from VBA?

Thank you so much in advance :)

Carol
This comment was minimized by the moderator on the site
Is there a way to do this with Images? I don't seem to be having any luck using the code as posted.

5 Images in a leaderboard, I want the Images in 1st or tied for 1st to be larger. Therefore I've 2 fixed image sizes, either 1x2 for not first or 2x4 for 1st placed (for example). I've got ranking already set-up so can use that to create sizes in specific cells for each image (ie use an IF statement so IF RANK is 1st size width is 2). My VBA is pretty weak though.

Basically I want - on sheet update - look at image size cells and set each image size to the specific image size cells result. I can't see in the VBA above how that exactly works but I think it should be easy!
This comment was minimized by the moderator on the site
Hi, is there a way that I can make the shape expand on two dimensions (instead of increasing the shape size by 5, increase it 5 on the horizontal and 3 on the vertical)?
This comment was minimized by the moderator on the site
Dear Sam,
The following VBA script can help you solve the problem. And the two dimensions are cell A1 and B1.

Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Target.Count = 1 Then
If Not Intersect(Target, Range("A1:B1")) Is Nothing Then
Call SizeCircle("Oval 2", Array(Val(Range("A1").Value), Val(Range("B1").Value)))
End If
End If
End Sub
Sub SizeCircle(Name As String, Arr As Variant)
Dim I As Long
Dim xCenterX As Single
Dim xCenterY As Single
Dim xCircle As Shape
On Error GoTo ExitSub
For I = 0 To UBound(Arr)
If Arr(I) > 10 Then
Arr(I) = 10
ElseIf Arr(I) < 1 Then
Arr(I) = 1
End If
Next
Set xCircle = ActiveSheet.Shapes(Name)
With xCircle
xCenterX = .Left + (.Width / 2)
xCenterY = .Top + (.Height / 2)
.Width = Application.CentimetersToPoints(Arr(0))
.Height = Application.CentimetersToPoints(Arr(1))
.Left = xCenterX - (.Width / 2)
.Top = xCenterY - (.Height / 2)
End With
ExitSub:
End Sub
This comment was minimized by the moderator on the site
Hi,
I have tried to use your post to write my own VBA code but don't seem to be getting very far. Mainly because I don't really understand VBA and I'm just trying to adapt your. I was wondering if you could help. I am wanting to change the length of a rectangle depending on the value in a cell. I would like the width if the rectangle to stay the same but the length to change. I would like both left hand vertices to stay in the same place and it to lengthen to the right. Is this possible?
Thank you
This comment was minimized by the moderator on the site
Dear lan,
Hope the following VBA code can solve your problem. (Please replace the Oval 1 with the shape name of your own)

Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Target.Row = 2 And Target.Column = 1 Then
Call SizeCircle("Oval 1", Val(Target.Value))
End If
End Sub
Sub SizeCircle(Name As String, Diameter)
Dim xCircle As Shape
Dim xDiameter As Single
On Error GoTo ExitSub
xDiameter = Diameter
If xDiameter > 10 Then xDiameter = 10
If xDiameter < 1 Then xDiameter = 1
Set xCircle = ActiveSheet.Shapes(Name)
xCircle.ScaleWidth 1.5, msoFalse, msoScaleFromTopLeft
With xCircle
.LockAspectRatio = msoFalse
.Width = Application.CentimetersToPoints(xDiameter)
End With
ExitSub:
End Sub
This comment was minimized by the moderator on the site
Hi, how do i replicate the same for multiple shapes linked to multiple cells in the same module?
This comment was minimized by the moderator on the site
Dear Abhinaya,
The article is updated with a new code section which can help you to execute with multiple shapes each depending on different cells. Thank you for your comment.

Best Regards,
Crystal
This comment was minimized by the moderator on the site
How do I name my shape? In your example above, how do you assign the name Oval 2 to the circle you have drawn?
This comment was minimized by the moderator on the site
Dear Ranjit,
For naming a shape, please select this shape, enter the shape name into the Name Box, and then press the Enter key. See below image shown.
This comment was minimized by the moderator on the site
How would you execute this with multiple shapes each depending on different cells?
This comment was minimized by the moderator on the site
Dear Jade,
The article is updated with a new code section which can help you to execute with multiple shapes each depending on different cells. Thank you for your comment.

Best Regards,
Crystal
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations