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 / Condition only number ...
Power Apps
Answered

Condition only number to be typed

(1) ShareShare
ReportReport
Posted on by 58

Hi Everyone,

I have textbox were users are allowed to type only numbers. No texts, and special characters allowed so when user types any letter or Special characters I want to show users a notification that only numbers are allowed. To achieve above condition I have created a label with Text "Only numbers are allowed" but I want formula so I cant add the Condition in Visible property of Label to notify the users. Is there a way to achieve this. 

Categories:
I have the same question (0)
  • Drrickryp Profile Picture
    Super User 2024 Season 1 on at

    Hi @rohitsekar1996 

    You could set the Format property of the control to TextFormat.Number and put "This box only accepts numbers" in the hint text. It will accept both integers and decimals. As an alternative, I would recommend the Slider control.  You can set the number limit for Default, Min and Max.  My preference is to give users as few options for entering data as possible, To see more about the slider,

    ref https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-slider 

    For a discussion regarding the TextInput control and limiting it to integers only see https://powerusers.microsoft.com/t5/Building-Power-Apps/Forcing-Integer-input-for-a-Text-Input-Control/td-p/293945 

     

  • Verified answer
    v-yutliu-msft Profile Picture
    Microsoft Employee on at

    Hi @rohitsekar1996 ,

    Do you want to validate whether data in a textinput only has number?

    If so, I suggest you use IsMatch function, which could justify whether data meet the format that you want.

    I've made a similar test for your reference:

    1)insert a textinput for entering data

    2)insert a label to display "Only numbers are allowed" when not meeting requirement

    set the label's Text:

    "Only numbers are allowed"

    set the label's Visible:

    !IsMatch(TextInput1.Text,"[0-9]+")&&!IsBlank(TextInput1.Text)
    //[0-9] means only allows number
    + means zore to more
    

    Then if you enter  texts or special characters, the text will display.

    3)insert a button to submit data.

    Set the submit button's OnSelect:

    If(!IsMatch(TextInput1.Text,"[0-9]+"),
    Notify("Only numbers are allowed",NotificationType.Warning),
    Patch(....)
    )

    //when not meet requirement, you will not submit data and get a notification.

     

     

    Best regards,

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 March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 505

#2
WarrenBelz Profile Picture

WarrenBelz 502 Most Valuable Professional

#3
Haque Profile Picture

Haque 324

Last 30 days Overall leaderboard