Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Centering object between two other objects

(0) ShareShare
ReportReport
Posted on by 345

Good morning all,

 

Bit of mind boggler this.

 

I have the following little progress bar thing:

Capture.PNG

The bar between the two numbers (Stage1 and Stage2, from left to right) is currently centred using the following code:

 

x = (Stage1.X + Stage1.Width) + (Stage1.Width / 2)
width = Stage2.X - (Stage1.X + Stage1.Width) - (Stage1.Width)

 

Now this means that if I resize the control, the bar adjusts automatically, like below:

 

Capture1.PNG

 

But you can also see that the bar becomes too short to be useful/look any good. So I think I need the width of the bar to be a percentage of the gap between Stage1 and Stage2, and for the X to continue to centre it. 

 

Honestly I'm at a loss on how to do this. Is there anyone better at maths that can help here? Cheers!

Categories:
  • EpicTriffid Profile Picture
    345 on at
    Re: Centering object between two other objects

    Amazing! Thank you!

  • Verified answer
    BCBuizer Profile Picture
    21,991 Super User 2025 Season 1 on at
    Re: Centering object between two other objects

    Hi @EpicTriffid ,

     

    With the below you'll have a 10% / 80% / 10% ratio which you adjust by changing the fractions:

     

     

    X = (Stage1.X + Stage1.Width)+((Stage2.X - (Stage1.X + Stage1.Width)) * .1)
    Width = (Stage2.X - (Stage1.X + Stage1.Width)) * .8

     

     

    On top of that you may want to set the Visible property so the control disappears below a certain threshold (in the below example 25):

     

    Visible = Self.Width > 25

     

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,524 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,906 Most Valuable Professional

Leaderboard