i want to change the size of a triangle as I changed the values in cell.i want its position(coordinates) remains the same.corner of rectangle or any cell.
sheets attached for reference
i want to change the size of a triangle as I changed the values in cell.i want its position(coordinates) remains the same.corner of rectangle or any cell.
sheets attached for reference
Last edited by riz4u; 04-09-2016 at 02:59 AM.
Try with the code below. Place it in the sheet where you have the shapes (not in the Workbook or Module).
![]()
Please Login or Register to view this content.
Or
Put this code in the sheet module
(open attached file and then amend the values - size changes automatically)
Easy to modify for more shapes![]()
Please Login or Register to view this content.
Last edited by Kevin#; 04-08-2016 at 07:24 AM.
If a response has helped then please consider rating it by clicking on *Add Reputation below the post
When your issue has been resolved don't forget to mark the thread SOLVED (click Thread Tools at top of thread)
THANKS FOR HELP,
only one problem left its change his position from corner to some where else.i want its grows from corner.from corner increase or decrease his size.problem2.png
thanks,
your code working nicely but only problem left it change its coodinate,i want its grows with same position,please view picture attached.
small triangle when i changed size its grows to big but didnt change its coorproblem2.pngdinates.
thanks,
your code working nicely but only problem left it change its coodinate,i want its grows with same position,please view picture attached.
small triangle when i changed size its grows to big but didnt change its coorAttachment 455121dinates.
I don't think (or at least i don't know how) is possible to anchor excel object to fixed position, and still have the flexibility to change it based on cell input.
@riz4u
Mathematically possible I am sure, but tricky!
- when you select a shape, even if it is a triangle, it sits inside a rectangle
- when you add a shape its position is determined by the co-ordinates of the top left corner of the rectangle
- when you add an isosceles triangle, the top left corner is above the left corner of the triangle, and opposite the top of the triangle
- a rectangle has 4 corners, 2 of which will always marry up with 2 corners of an isosceles triangle - but which 2?
- you have rotated all the triangles
- which corner of the triangle should have a fixed co-ordinate?
Ignoring excel for 1 minute, can you provide a mathematical formula to determine the co-ordinates of the each corner of the rectangle based on the co-ordinates and size of the triangle?
dear please forget the rectangle,try to stick triangle with any cell.i tried wil cell.top and left vlaues but still its change its coordiantes.
Please continue your questions on this thread. I have closed your other new thread regarding this question![]()
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
You will not fix your problem without fairly complex maths.
The problem is there because the shapes have been rotated.
Unfortunately, when Excel rotates a shape, Excel retains the original "Left" and "Top" values, and rotates the shape around a "fixed point"
When a shape is resized, it still retains those same "Top" & "left" values, but of course everything else has changed which is why the shape moves - it is still referring to those original values.
To tell Excel where to put a shape after we have resized it we need to calculate where to move it relative to those original values.
This link may help you understand the calculations required.
The only way that it might be possible is by attaching the shape to a cell and using the co-ordinates of the cells themselves - but even that is not as easy as it sounds because (as you have already discovered) the shapes will still move when re-sized! I will investigate this in a few days and update the thread after that.
Another possibility would be to create an image (outside of excel) and save 4 versions (0, 90, 180, 270 degree rotations). Then there would be zero rotation within excel, only a resize. (note - it is not possible create a new "Shape" for Excel).
Last edited by Kevin#; 04-09-2016 at 09:46 AM.
dear, i change something instead of increase and decrease size ,i used misc shape and called them from cell A1,only one problem left how to call out more than one shapes please help me to resolve the error.
I do not understand what you want.
How many shapes should appear?
And where should they appear?
Note - the rotation referencing problem does not go away just because you are starting from A1
Please amend your worksheet to show what the sheet should look like AFTER you amend the value in cell "A1"
thanks
Dear as you changes the value from 12 to 16 ,triangle shape changes,i think you observed that.i insert 4 triangle and called them from a1. as you know my square have corner.when i add 4 more trangle and try to call them from a1 ,other all disapear.please help me to correct the code.how i call more than one diagram in code.
If ActiveSheet.Range("A1").Value = 16 Then
ActiveSheet.Shapes("Right Triangle 4,"Right Triangle 9").Visible = True ,
(i want to add more than 4 triangle in code,i used "and " "," "&" all gives error that all.hope you understand.
please observe sheet 1. i want to apear four of same size in four corner.just remove above error and problem will be solved.bold step not working.
i want when i right 12 in a1 all four corner triangle apears of same size as i insert 8 triangle in two corner.
Last edited by riz4u; 04-12-2016 at 05:09 AM.
Perhaps it is this
I have grouped your IFs into pairs
Also added a routine to hide all shapes
![]()
Please Login or Register to view this content.
ooo yes problem solved look the final results.
try this code. it allows to have more shapes for less lines of code
![]()
Please Login or Register to view this content.
@riz4u looks like that is what you wanted.
Please mark thread as solved (thread tools at top of thread)
thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks