انتقل إلى المحتوى الرئيسي

كيفية تغيير حجم الشكل تلقائيًا بناءً على / اعتمادًا على قيمة الخلية المحددة في Excel؟

إذا كنت تريد تغيير حجم الشكل تلقائيًا بناءً على قيمة خلية محددة ، فيمكن أن تساعدك هذه المقالة.

تغيير حجم الشكل تلقائيًا استنادًا إلى قيمة الخلية المحددة برمز VBA


تغيير حجم الشكل تلقائيًا استنادًا إلى قيمة الخلية المحددة برمز VBA

يمكن أن تساعدك التعليمات البرمجية لـ VBA التالية في تغيير حجم شكل معين بناءً على قيمة الخلية المحددة في ورقة العمل الحالية. الرجاء القيام بما يلي.

1. انقر بزر الماوس الأيمن فوق علامة تبويب الورقة بالشكل الذي تريد تغيير الحجم ، ثم انقر فوق عرض الرمز من قائمة النقر بزر الماوس الأيمن.

2. في ال ميكروسوفت فيسوال باسيك للتطبيقات نافذة ، انسخ والصق رمز فبا التالي في نافذة التعليمات البرمجية.

رمز 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

ملاحظات: في الكود ، "البيضاوي شنومكس"هو اسم الشكل الذي ستقوم بتغيير حجمه. و الصف = شنومكس, العمود = 1 يعني أن حجم الشكل "البيضاوي 2" سيتغير بالقيمة في A2. الرجاء تغييرها كما تريد.

لتغيير الحجم التلقائي لأشكال متعددة استنادًا إلى قيم خلايا مختلفة ، يرجى تطبيق رمز VBA أدناه.

رمز فبا: تغيير حجم الأشكال المتعددة تلقائيًا بناءً على قيمة الخلايا المحددة المختلفة في إكسيل

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) في الكود ، "البيضاوي شنومكس"،"وجه مبتسم 3"و"القلب شنومكس"اسم الأشكال الذي ستقوم بتغيير أحجامها تلقائيًا. و A1, A2 و A3 هي الخلايا التي القيم التي سيتم تغيير حجم الأشكال تلقائيًا بناءً عليها.
2) إذا كنت تريد إضافة المزيد من الأشكال ، فيرجى إضافة خطوط "ElseIf xAddress = "A3" ثم"Call SizeCircle (" Heart 2 "، Val (Target.Value))"فوق الأول"إنهاء حالة"في الكود. وتغيير عنوان الخلية واسم الشكل بناءً على احتياجاتك.

3. صحافة قديم + Q مفاتيح في نفس الوقت لإغلاق ميكروسوفت فيسوال باسيك للتطبيقات نافذة.

من الآن فصاعدًا ، عند تغيير القيمة في الخلية A2 ، سيتم تغيير حجم الشكل البيضاوي 2 تلقائيًا. انظر لقطة الشاشة:

أو قم بتغيير القيم الموجودة في الخلية A1 و A2 و A3 لتغيير حجم الأشكال المقابلة "البيضاوي 1" و "الوجه المبتسم 3" و "القلب 3" تلقائيًا. انظر لقطة الشاشة:

ملاحظات: لن يتغير حجم الشكل بعد الآن عندما تكون قيمة الخلية أكبر من 10.


سرد كافة الأشكال وتصديرها في مصنف Excel الحالي:

تصدير الرسومات فائدة كوتولس ل إكسيل تساعدك في سرد ​​كافة الأشكال الموجودة في المصنف الحالي بسرعة ، ويمكنك تصديرها جميعًا إلى مجلد معين في وقت واحد كما تظهر لقطة الشاشة أدناه. قم بتنزيله وجربه الآن! (تجربة مجانية لمدة 30 يومًا)


مقالات ذات صلة:

أفضل أدوات إنتاجية المكتب

🤖 مساعد Kutools AI: إحداث ثورة في تحليل البيانات على أساس: التنفيذ الذكي   |  إنشاء التعليمات البرمجية  |  إنشاء صيغ مخصصة  |  تحليل البيانات وإنشاء الرسوم البيانية  |  استدعاء وظائف Kutools...
الميزات الشعبية: البحث عن التكرارات أو تمييزها أو تحديدها   |  حذف الصفوف الفارغة   |  دمج الأعمدة أو الخلايا دون فقدان البيانات   |   جولة بدون صيغة 
سوبر بحث: معايير متعددة VLookup    VLookup ذات القيمة المتعددة  |   VLookup عبر أوراق متعددة   |   بحث غامض ....
قائمة منسدلة متقدمة: إنشاء القائمة المنسدلة بسرعة   |  القائمة المنسدلة التابعة   |  قائمة منسدلة متعددة التحديد ....
مدير العمود: إضافة عدد محدد من الأعمدة  |  نقل الأعمدة  |  تبديل حالة رؤية الأعمدة المخفية  |  مقارنة النطاقات والأعمدة 
الميزات المميزة: التركيز على الشبكة   |  عرض تصميم   |   شريط الفورمولا الكبير    مدير المصنفات والأوراق   |  مكتبة الموارد (النص السيارات)   |  منتقي التاريخ   |  اجمع أوراق العمل   |  تشفير/فك تشفير الخلايا    إرسال رسائل البريد الإلكتروني عن طريق القائمة   |  سوبر تصفية   |   مرشح خاص (تصفية غامق / مائل / يتوسطه خط ...) ...
أفضل 15 مجموعة أدوات12 نص الأدوات (إضافة نص, إزالة الأحرف، ...)   |   +50 رسم الأنواع (مخطط جانت، ...)   |   40+ عملي الصيغ (احسب العمر على أساس تاريخ الميلاد، ...)   |   19 إدخال الأدوات (أدخل رمز الاستجابة السريعة, إدراج صورة من المسار، ...)   |   12 تحويل الأدوات (أرقام إلى كلمات, نتيجة تحويل عملة، ...)   |   7 دمج وتقسيم الأدوات (الجمع بين الصفوف المتقدمة, تقسيم الخلايا، ...)   |   ... و اكثر

عزز مهاراتك في Excel باستخدام Kutools for Excel، واختبر كفاءة لم يسبق لها مثيل. يقدم Kutools for Excel أكثر من 300 ميزة متقدمة لتعزيز الإنتاجية وتوفير الوقت.  انقر هنا للحصول على الميزة التي تحتاجها أكثر...

الوصف


يجلب Office Tab الواجهة المبوبة إلى Office ، ويجعل عملك أسهل بكثير

  • تمكين التحرير والقراءة المبوبة في Word و Excel و PowerPointوالناشر والوصول و Visio والمشروع.
  • فتح وإنشاء مستندات متعددة في علامات تبويب جديدة من نفس النافذة ، بدلاً من النوافذ الجديدة.
  • يزيد من إنتاجيتك بنسبة 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