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 / Sum within a new colle...
Power Apps
Answered

Sum within a new collection

(0) ShareShare
ReportReport
Posted on by 32

I created a collection with columns, in which I save the values that are selected in a "slider" (Slider1_1) and in another one I save that value transformed to a predetermined scale (Slider1_1Complexity). Up to here, everything is working.

I would like to be able to create a new column in which I store the sum of what I call complexity (Slider1_1Complexity + Slider1_2Complexity). I tried Sum(Slider1_1Complexity + Slider1_2Complexity) but it doesn't work.

Is it possible to do this?

 

 

My code:

Collect(
Form2_Programs,
{ Slider1_1: Slider1_1.Value,
Slider1_1Complexity: If(Slider1_1.Value <= 4, "0", Slider1_1.Value <= 7, "0.5", Slider1_1.Value <= 10, "1"),
Slider1_2: Slider1_2.Value,
Slider1_2Complexity: If(Slider1_2.Value <= 4, "0", Slider1_2.Value <= 7, "0.5", Slider1_2.Value <= 10, "1"),
sum: Sum(Slider1_1Complexity, Slider1_2Complexity)

}

)

Categories:
I have the same question (0)
  • Verified answer
    CNT Profile Picture
    10,921 Super User 2024 Season 1 on at

    @SeteGonz Try this,

    Collect(
     Form2_Programs,
     With( {varSlider1_1Complexity:If(Slider1_1.Value <= 4, "0", Slider1_1.Value <= 7, "0.5", Slider1_1.Value <= 10, "1"),
    		 varSlider1_2Complexity:If(Slider1_2.Value <= 4, "0", Slider1_2.Value <= 7, "0.5", Slider1_2.Value <= 10, "1")},
    		{
    			Slider1_1 : Slider1_1.Value, 
    			Slider1_1Complexity : varSlider1_1Complexity, 
    			Slider1_2 : Slider1_2.Value, 
    			Slider1_2Complexity : varSlider1_2Complexity, 
    			sum : varSlider1_1Complexity + varSlider1_2Complexity
    		}
    	)
    )
  • CNT Profile Picture
    10,921 Super User 2024 Season 1 on at

    @SeteGonz Did it work?

  • SeteGonz Profile Picture
    32 on at

    Thank you, it works!

  • CNT Profile Picture
    10,921 Super User 2024 Season 1 on at

    @SeteGonz Glad to help!

     

    Please remember to give a 👍 and accept the solution as it will help others in the future.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 1,074

#2
Valantis Profile Picture

Valantis 639

#3
11manish Profile Picture

11manish 606

Last 30 days Overall leaderboard