Hoppa till huvudinnehåll

Hur ändrar jag formstorlek automatiskt / beroende på angivet cellvärde i Excel?

Om du vill ändra formstorleken automatiskt baserat på värdet för en viss cell kan den här artikeln hjälpa dig.

Ändra formstorlek automatiskt baserat på specificerat cellvärde med VBA-kod


Ändra formstorlek automatiskt baserat på specificerat cellvärde med VBA-kod

Följande VBA-kod kan hjälpa dig att ändra en viss formstorlek baserat på det angivna cellvärdet i det aktuella kalkylbladet. Gör så här.

1. Högerklicka på arkfliken med den form du behöver för att ändra storlek och klicka sedan på Visa kod från högerklickmenyn.

2. I Microsoft Visual Basic för applikationer fönster, kopiera och klistra in följande VBA-kod i kodfönstret.

VBA-kod: Ändra formstorlek automatiskt baserat på specificerat cellvärde i Excel

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

Anmärkningar: I koden, “Oval 2”Är det formnamn du kommer att ändra storlek. Och Rad = 2, Kolumn = 1 betyder att storleken på formen ”Oval 2” kommer att ändras med värdet i A2. Ändra dem efter behov.

För att automatiskt ändra storlek på flera former baserat på olika cellvärden, använd nedanstående VBA-kod.

VBA-kod: Ändra storlek på flera former automatiskt baserat på olika angivna cellvärden i Excel

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

Anmärkningar:

1) I koden, “Oval 1","Smiley 3"Och"Hjärta 3”Är formens namn. Du kommer att ändra storlek automatiskt. Och A1, A2 ochA3 är cellerna vilka värden du automatiskt ändrar storlek baserat på.
2) Om du vill lägga till fler former, vänligen lägg till rader "ElseIf xAddress = "A3" Sedan"och "Call SizeCircle (" Heart 2 ", Val (Target.Value))"ovanför den första"End If"rad i koden. Och ändra celladressen och formnamnet baserat på dina behov.

3. Tryck andra + Q samtidigt för att stänga Microsoft Visual Basic för applikationer fönster.

Från och med nu, när du ändrar värdet i cell A2, ändras storleken på formen Oval 2 automatiskt. Se skärmdump:

Eller ändra värdena i cellerna A1, A2 och A3 för att ändra storlek på motsvarande former "Oval 1", "Smiley Face 3" och "Heart 3" automatiskt. Se skärmdump:

Anmärkningar: Formstorleken ändras inte längre när cellvärdet är större än 10.


Lista och exportera alla former i aktuell Excel-arbetsbok:

Smakämnen Exportera grafik nytta av Kutools för Excel hjälper dig att snabbt lista alla former i aktuell arbetsbok, och du kan exportera dem alla till en viss mapp samtidigt som skärmdumpen nedan visar. Ladda ner och prova nu! (30 dagars gratis spår)


Relaterade artiklar:

Bästa kontorsproduktivitetsverktyg

🤖 Kutools AI Aide: Revolutionera dataanalys baserat på: Intelligent utförande   |  Generera kod  |  Skapa anpassade formler  |  Analysera data och generera diagram  |  Anropa Kutools funktioner.
Populära funktioner: Hitta, markera eller identifiera dubbletter   |  Ta bort tomma rader   |  Kombinera kolumner eller celler utan att förlora data   |   Rund utan formel ...
Superuppslag: Flera kriterier VLookup    VLookup med flera värden  |   VSök över flera ark   |   Fuzzy Lookup ....
Avancerad rullgardinslista: Skapa snabbt en rullgardinslista   |  Beroende rullgardinslista   |  Flervals-rullgardinslista ....
Kolumnhanterare: Lägg till ett specifikt antal kolumner  |  Flytta kolumner  |  Växla synlighetsstatus för dolda kolumner  |  Jämför intervall och kolumner ...
Utvalda funktioner: Rutnätsfokus   |  Designvy   |   Stor formelbar    Arbetsbok & Bladhanterare   |  Resursbibliotek (Automatisk text)   |  Datumväljare   |  Kombinera arbetsblad   |  Kryptera/Dekryptera celler    Skicka e-postmeddelanden efter lista   |  Superfilter   |   Specialfilter (filtrera fet/kursiv/genomstruken...) ...
Topp 15 verktygssatser12 text verktyg (lägga till text, Ta bort tecken, ...)   |   50+ Diagram Typer (Gantt Chart, ...)   |   40+ Praktiskt Formler (Beräkna ålder baserat på födelsedag, ...)   |   19 Införande verktyg (Infoga QR-kod, Infoga bild från sökväg, ...)   |   12 Konvertering verktyg (Siffror till ord, Valutaväxling, ...)   |   7 Slå ihop och dela verktyg (Avancerade kombinera rader, Dela celler, ...)   |   ... och mer

Uppgradera dina Excel-färdigheter med Kutools för Excel och upplev effektivitet som aldrig förr. Kutools för Excel erbjuder över 300 avancerade funktioner för att öka produktiviteten och spara tid.  Klicka här för att få den funktion du behöver mest...

Beskrivning


Fliken Office ger ett flikgränssnitt till Office och gör ditt arbete mycket enklare

  • Aktivera flikredigering och läsning i Word, Excel, PowerPoint, Publisher, Access, Visio och Project.
  • Öppna och skapa flera dokument i nya flikar i samma fönster, snarare än i nya fönster.
  • Ökar din produktivitet med 50 % och minskar hundratals musklick för dig varje dag!
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