web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Rounding Functionality...
Power Apps
Answered

Rounding Functionality in PowerApps

(0) ShareShare
ReportReport
Posted on by 11

I'm working on building my first App.  A fairly simple calculator to multiply a cost per SF.  But I'd like for the final result to be number rounded to the nearest thousand.  The application is working when calculating actual numbers but I can't get the rounding functionality to work.  I've looked at a few examples but none of them are working for me.   

 

Calculator is using a user entered SF (TextInput2) multiplied by a dropdown value based on Building type.  The formula for that works great - UpdateContext({Result: Dropdown1.Selected.PerSF * TextInput2}) 

 

But when I try to modify based on some online examples, it's not rounding.  

Round(UpdateContext({Result: Dropdown1.Selected.PerSF * TextInput2}), 2) *1000 

 

Any suggestions on how to get this to work? 

Categories:
I have the same question (0)
  • Verified answer
    BCBuizer Profile Picture
    22,833 Super User 2026 Season 2 on at

    Hi @MrQuarry ,

     

    It seems your nesting order is wrong: you are first setting the Result and then rounding it. can you try:

     

    UpdateContext({
    	Result: 
    	Round(
    		Dropdown1.Selected.PerSF * TextInput2,
    	2) * 1000
    }) 

     

     

  • Verified answer
    Gochix Profile Picture
    1,937 Moderator on at

    Hi @MrQuarry ,

    I believe you have the wrong order for the formula. As the UpdateContext must be first then:


    UpdateContext({Result: Round(Dropdown1.Selected.PerSF * TextInput2, 2) * 1000})

  • MrQuarry Profile Picture
    11 on at

    Thank you @BCBuizer  & @Gochix  - that was the issue.  I appreciate your help.  I'm a newbie here just learning the ropes.  

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 392 Most Valuable Professional

#2
11manish Profile Picture

11manish 181 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 112 Super User 2026 Season 2

Last 30 days Overall leaderboard