Move a shape based on Cell value. If cell is less than another shape moves up, if cell is more than another cell moved down.

Tfelsbo

New Member
Joined
Apr 13, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi I am trying to get a shape to move based on a cell value.

If cell "V19" is a higher value than and "I21" I want the shape to move slightly up, then do the exact opposite when "V19" is of lower value than "I21" I want the shape to move back to its original position.

Does anyone know how to do this I have tried a few different things, but my VBA skills are not that great.
 

Attachments

  • Capture.PNG
    Capture.PNG
    10.6 KB · Views: 5

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
To just move it, as you call it, slightly up or down.

Name the shape PUMP.
Change Sheet name to actual Sheet name.

Code:
Sub Move_Down()
    Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top + 1
End Sub

Code:
Sub Move_Up()
    Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top - 1
End Sub

If you want to restrict how high or deep the pump can go, you have to let us know and in relation to what.

To move to it's original, we need to know the restrictions and what is the original. Once it has moved, the original is disappeared unless you want to keep track, with code, all the top positions.
 
Upvote 0
Or put this in the Sheet module where your 2 cells that are compared are and where the PUMP is.
It'll go up or down as you change either cell.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target = Cells(19, 22) Or Target = Cells(21, 9) Then
        If Cells(19, 22).Value > Cells(21, 9).Value Then
            Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top + 1
                Else
            Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top - 1
        End If
    End If
End Sub
 
Upvote 0
Hi thanks for your reply. A great help thanks you.

To just move it, as you call it, slightly up or down.

Name the shape PUMP.
Change Sheet name to actual Sheet name.

Code:
Sub Move_Down()
    Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top + 1
End Sub

Code:
Sub Move_Up()
    Sheets("Sheet1").Shapes("PUMP").Top = Sheets("Sheet1").Shapes("PUMP").Top - 1
End Sub

If you want to restrict how high or deep the pump can go, you have to let us know and in relation to what.

To move to it's original, we need to know the restrictions and what is the original. Once it has moved, the original is disappeared unless you want to keep track, with code, all the top positions.

Yeah, I do want to limit its movement as currently If I enter a lower number twice the shape just keeps moving upwards and the same in the downwards direction.

I want the shape/pump to go no lower than cell (22,18) and no lower than cell (16,18).
Current code is below

VBA Code:
Private Sub Worksheet_change(ByVal Target As Range)

'Run this code when Cell is changed

If Target = Cells(16, 9) Or Target = Cells(36, 9) Then

If Cells(16, 9).value > Cells(36, 9).value Then


    Sheets("Diagram").Select
    ActiveSheet.Shapes.Range(Array("pump")).Select
    Selection.ShapeRange.IncrementTop -35.3911811024

Else

    Sheets("Diagram").Select
    ActiveSheet.Shapes.Range(Array("pump")).Select
    Selection.ShapeRange.IncrementTop 35.1305511811

    End If
    
End If

End Sub


Cheers
 
Upvote 0
Ok all good.

I have sorted it!

Thanks for your help jolivanes. You have saved me a tone of time.

VBA Code:
Private Sub Worksheet_change(ByVal Target As Range)



'Run this code when Cell is changed

If Target = Cells(16, 9) Or Target = Cells(36, 9) Then

If Cells(16, 9).value > Cells(36, 9).value Then


    Sheets("Diagram").Select
    ActiveSheet.Shapes("pump").Top = Cells(16, 17).Top

   
Else

    Sheets("Diagram").Select
    ActiveSheet.Shapes("pump").Top = Cells(18, 17).Top
    

 End If
    
End If


End Sub
 
Upvote 0
Good to hear that you have it all sorted.
However, I don't think you need the Sheets("Diagram").Select lines.
I am assuming that the code needs to be fired when changing values in that sheet and that the code is in the Sheet Module for Sheet "Diagram".
Minimize select, selecting, activate etc as much as you can. As a matter of fact, it is seldom required.
 
Upvote 0

Forum statistics

Threads
1,215,197
Messages
6,123,581
Members
449,108
Latest member
rache47

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top