Skip to main content

Notifications

Community site session details

Community site session details

Session Id : w29vhgPwMzTb+sl93K/QxM
Power Apps - Building Power Apps
Answered

Slider Value Based on Field Content

Like (0) ShareShare
ReportReport
Posted on 30 Jul 2023 14:28:37 by 4,733 Super User 2025 Season 1

I have a Gallery in which are a Label and a Slider control.

The Label is static. The slider value is determined when other
fields in the app (other columns in the SP List) have data.

I am currently using the following formula to adjust the slider value.
     If(!IsBlank(Text1.Text) && !IsBlank(Text2.Text) && (Text3.Text)="Yes",44,

     !IsBlank(Text1.Text) && !IsBlank(Text2.Text),22,0))

Phineas_1-1690727191243.png

                  0                                    20                                  40                               60                               80                        100
My current version persumes the fields used in the formula are populated
in a linear order, thus moving the slider value along its line. However, I don't
know for sure if this is true, the fields might be completed in any order,
causing my slider formula not to work properly.

My question, can the formula be restructred to simply add a predetermined
amount to the slider value whenever any of the fields have content added?
I've seen this down with a Slider control using 'Up' and 'Down' arrow icons.

This will allow the user to add content to the five fields in any order they like
and the slider will progress as desired.

Example: If(!IsBlank(Text1.Text),Slider.Value,+20,
               If(!IsBlank(Text2.Text),Slider.Value,+20, 
               If(!IsBlank(Text3.Text),Slider.Value,+20,
               If(!IsBlank(Text4.Text),Slider.Value,+20, 
               If(!IsBlank(Text4.Text),Slider.Value,+20)     

Phineas_0-1690726282681.png

                  0                                   20                                    40                              60                               80                        100

Categories:
  • Verified answer
    LaurensM Profile Picture
    12,510 Super User 2025 Season 1 on 30 Jul 2023 at 16:26:43
    Re: Slider Value Based on Field Content

    Hi @Phineas,

     

    Using separated If() statements should solve your problem regarding the controls not being completed in a linear manner.

    If(!IsBlank(Text1.Text), 20) + If(!IsBlank(Text2.Text), 20)

     

    In case of a lot of controls, you could create an array of control values and loop through those:

    Sum(
     ForAll(
     [
     Text1.Text,
     Text2.Text,
     Text3.Text
     ],
     If(
     !IsBlank(ThisRecord.Value),
     20
     )
     ),
     Value
    )

     

    If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.

    Thanks!

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,751 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,091 Most Valuable Professional

Leaderboard
Loading started