Բաց թողնել հիմնական բովանդակությունը

Ինչպե՞ս ինքնաբերաբար փոխել ձևի չափը `հիմնված / կախված Excel- ում նշված բջջային արժեքից:

Եթե ​​ցանկանում եք ավտոմատ կերպով փոխել ձևի չափը ՝ ելնելով նշված բջիջի արժեքից, այս հոդվածը կարող է օգնել ձեզ:

Ավտոմատ փոխել ձևի չափը ՝ ելնելով նշված բջջային արժեքից, VBA կոդով


Ավտոմատ փոխել ձևի չափը ՝ ելնելով նշված բջջային արժեքից, VBA կոդով

Հաջորդ VBA կոդը կարող է օգնել ձեզ փոխել որոշակի ձևի չափը `ելնելով ընթացիկ աշխատանքային թերթում նշված բջջային արժեքից: Խնդրում եմ, արեք հետևյալ կերպ.

1. Աջ կտտացրեք թերթիկի ներդիրին, որի չափը պետք է փոխեք, և կտտացրեք Դիտել կոդը աջ կտտացնելու ցանկից:

2. Մեջ Microsoft Visual Basic հավելվածների համար պատուհանը, պատճենեք և տեղադրեք հետևյալ VBA կոդը օրենսգրքի պատուհանում:

VBA կոդ. 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

ՆշումԿոդում `«Օվալ 2”Այն ձևի անունն է, որը դուք կփոխեք դրա չափը: Եվ Տող = 2, Սյունակ = 1 նշանակում է, որ «Օվալ 2» ձևի չափը կփոխվի A2- ի արժեքով: Խնդրում ենք փոխել դրանք, ինչպես ձեզ հարկավոր է:

Բջջի տարբեր արժեքների վրա հիմնված բազմաթիվ ձևերի ավտոմատ չափափոխման համար խնդրում ենք կիրառել ստորև նշված VBA կոդը:

VBA կոդ. 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

Նշումներ:

1) ծածկագրում «Օվալ 1","Ileպտերես դեմք 3"Եւ"Heart 3»Ձևերի անունն է, դուք ինքնաբերաբար կփոխեք դրանց չափերը: Եվ A1, A2 ևA3 այն բջիջներն են, որոնց արժեքները, որոնց հիման վրա դուք ինքնաբերաբար կփոխեք ձևերը:
2) Եթե ցանկանում եք ավելացնել ավելի շատ ձևեր, խնդրում ենք ավելացնել տողեր »ElseIf xAddress = "A3" Ապաեւ այլն "Callանգի չափի շրջան (" Սիրտ 2 ", Val (Target.Value))«առաջինից վեր»Վերջ: Եթե"տողում ծածկագրում: Եվ փոխեք բջջային հասցեն և ձևի անունը` ելնելով ձեր կարիքներից:

3. Մամուլ ալտ + Q ստեղները միաժամանակ փակելու համար Microsoft Visual Basic հավելվածների համար պատուհան.

Այսուհետ, երբ A2 բջիջում փոխում եք արժեքը, Օվալ 2 ձևի չափը ավտոմատ կերպով փոխվում է: Տեսեք,

Կամ փոխեք A1, A2 և A3 բջիջների արժեքները `համապատասխանաբար« Օվալ 1 »,« ileպտացող դեմք 3 »և« Սրտ 3 »համապատասխան ձևերը չափափոխելու համար: Տեսեք,

ՆշումՁևի չափը այլևս չի փոխվի, երբ բջջի արժեքը 10-ից մեծ է:


Listուցակեք և արտահանեք բոլոր ձևերը Excel- ի ընթացիկ աշխատանքային գրքում.

The Արտահանել գրաֆիկա օգտակարությունը Excel- ի համար նախատեսված գործիքներ կօգնեն ձեզ արագորեն թվարկել բոլոր ձևերը ընթացիկ աշխատանքային գրքում, և բոլորը կարող եք միանգամից արտահանել որոշակի թղթապանակ, քանի որ ստորև նշված էկրանի նկարը: Ներբեռնեք և փորձեք հիմա: (30 օր անվճար երթուղի)


Առնչվող հոդվածներ քանակը:

Գրասենյակի արտադրողականության լավագույն գործիքները

🤖 Kutools AI օգնականՀեղափոխություն կատարել տվյալների վերլուծության հիման վրա՝ Խելացի կատարում   |  Ստեղծեք ծածկագիր  |  Ստեղծեք հատուկ բանաձևեր  |  Վերլուծել տվյալները և ստեղծել գծապատկերներ  |  Invoke Kutools-ի գործառույթները...
Հանրաճանաչ հատկություններ: Գտեք, ընդգծեք կամ նույնականացրեք կրկնօրինակները   |  Deleteնջել դատարկ շարքերը   |  Միավորել սյունակները կամ բջիջները՝ առանց տվյալների կորստի   |   Կլոր առանց բանաձևի ...
Super Փնտրել: Բազմաթիվ չափանիշների VLookup    Բազմակի արժեք VLookup  |   VLookup բազմաթիվ թերթերում   |   Fuzzy Փնտրել ....
Ընդլայնված բացվող ցուցակ: Արագ ստեղծեք բացվող ցուցակը   |  Կախված բացվող ցուցակ   |  Բազմակի ընտրություն Drop Down ցուցակ ....
Սյունակի կառավարիչ: Ավելացրեք որոշակի քանակությամբ սյունակներ  |  Տեղափոխել սյունակները  |  Փոխարկել թաքնված սյունակների տեսանելիության կարգավիճակը  |  Համեմատեք միջակայքերը և սյունակները ...
Առանձնահատկություններ: Ցանցի կենտրոնացում   |  Դիզայնի տեսք   |   Մեծ Formula Bar    Աշխատանքային գրքույկի և թերթիկների կառավարիչ   |  Ռեսուրսների գրադարան (Ավտոմատ տեքստ)   |  Ամսաթիվ ընտրող   |  Միավորել աշխատանքային թերթերը   |  Գաղտնագրել/գաղտնազերծել բջիջները    Ուղարկեք նամակներ ըստ ցանկի   |  Սուպեր զտիչ   |   Հատուկ զտիչ (զտել թավ/շեղ/շեղված...) ...
Լավագույն 15 գործիքների հավաքածու12 Տեքստ Գործիքներ (Ավելացրեք տեքստ, Հեռացնել նիշերը, ...)   |   50+ Աղյուսակ Տեսակներ (Գանտի աղյուսակը, ...)   |   40+ Գործնական Բանաձեւեր (Հաշվարկել տարիքը ՝ ելնելով ծննդյան տարեդարձից, ...)   |   19 միացում Գործիքներ (Տեղադրեք QR կոդ, Տեղադրեք նկար ուղուց, ...)   |   12 Փոխարկում Գործիքներ (Բառեր համարներ, Արտարժույթի փոխակերպումը, ...)   |   7 Միաձուլում և պառակտում Գործիքներ (Ընդլայնված կոմբինատ տողեր, Պառակտված բջիջներ, ...)   |   ... եւ ավելին

Լրացրեք ձեր Excel-ի հմտությունները Kutools-ի հետ Excel-ի համար և փորձեք արդյունավետությունը, ինչպես երբեք: Kutools-ը Excel-ի համար առաջարկում է ավելի քան 300 առաջադեմ առանձնահատկություններ՝ արտադրողականությունը բարձրացնելու և ժամանակ խնայելու համար:  Սեղմեք այստեղ՝ Ձեզ ամենաշատ անհրաժեշտ հատկանիշը ստանալու համար...

Նկարագրություն


Office Tab- ը Tabbed ինտերֆեյսը բերում է Office, և ձեր աշխատանքը շատ ավելի դյուրին դարձրեք

  • Միացնել ներդիրներով խմբագրումը և ընթերցումը Word, Excel, PowerPoint- ով, Հրատարակիչ, Access, Visio և Project:
  • Բացեք և ստեղծեք բազմաթիվ փաստաթղթեր նույն պատուհանի նոր ներդիրներում, այլ ոչ թե նոր պատուհաններում:
  • Բարձրացնում է ձեր արտադրողականությունը 50%-ով և նվազեցնում մկնիկի հարյուրավոր սեղմումները ձեզ համար ամեն օր:
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