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 / Text field with space ...
Power Apps
Answered

Text field with space is not blank

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hello, 

 

We require to enforce text input for 2 fields, which are linked to a collection. 

 

When the person wants to proceed and the fields are blank, the alert is shown (to indicate they are required). 

However, people are still able to circumvent that by entering spaces. PowerApps picks this up as text and thus does not consider this textfield 'blank' anymore. 

 

Is there a function that checks whether a field includes data (and considers an entry that includes spaces only as 'blank')?

 

If(IsBlank(textinputTaskLocation), UpdateContext({Alert1: true}));
If(IsBlank(textinputTaskDescription), UpdateContext({Alert2: true}));
If(!IsBlank(textinputTaskLocation), UpdateContext({Alert1: false}));
If(!IsBlank(textinputTaskDescription), UpdateContext({Alert2: false}));

If(!IsBlank(textinputTaskLocation) && !IsBlank(textinputTaskDescription), 
Navigate(InspectionScreen1, Fade), false)

1.JPG

Categories:
I have the same question (0)
  • dinusc Profile Picture
    Microsoft Employee on at

    Hello DanielaH,

     

    You should be able to use "Trim" function to get rid of all the spaces before checking the field value. Please see this page: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-trim

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi  

     

    Thanks for your suggestion.

     

    However the Trim() or TrimEnds() function did not work here.

    I assume because they refer to removing spaces before/after/between strings and therefore does not work if there is no string?

     

    It does work to add the following condition, but then I'll need to add this multiple times to account for several space entries. It just does not seem like an elegant way 😉

     

    If(textinputTaskDescription.Text = " ", UpdateContext({Alert2: true}));
    If(textinputTaskDescription.Text = " ", UpdateContext({Alert2: true}));
    If(textinputTaskDescription.Text = " ", UpdateContext({Alert2: true}));
    If(textinputTaskDescription.Text = " ", UpdateContext({Alert2: true}));
    If(textinputTaskDescription.Text = " ", UpdateContext({Alert2: true}));
  • dinusc Profile Picture
    Microsoft Employee on at

    Can you please try the following:

    If(IsBlank(textinputTaskDescription.Text), UpdateContext({Alert2: true}), UpdateContext({Alert2: false}));

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thanks - Yes I tried this:

    The alert will only show up if the field is really blank. As soon as I add a space the alert does now show anymore.

  • CMee Profile Picture
    72 on at

     

    IsBlank(Substitute(textinputTaskDescription.Text," ",""))

    This will return true for any string that is a series of spaces.

     

    On a more general note however, I tend to lean more towards checking the length of the provided string when validating text fields.This way you can check if the user entered anything that is a single character (like ".' or " " for instance) to circumvent the field.

     

    Although I don't know your specific circumstances I would use something like this:

     

    UpdateContext({Alert1: !Len(textinputTaskLocation.Text)>1});
    UpdateContext({Alert2: !Len(textinputTaskDescription.Text)>1})

    This would enforce a minimum of 2 characters in both of your fields and updates your Alert variables. You could also combine these two for an even more robust validation that checks minimum length and checks for the entering of spaces.

     

    UpdateContext({Alert1: !Len(Substitute(textinputTaskLocation.Text," ",""))>1});
    UpdateContext({Alert2: !Len(Substitute(textinputTaskDescription.Text," ",""))>1})

     

  • Verified answer
    dinusc Profile Picture
    Microsoft Employee on at

    Sorry. My bad. The formula should be:

    If(IsBlank(Trim(textinputTaskDescription.Text)), UpdateContext({Alert2: true}), UpdateContext({Alert2: false}));

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi CMee and 

     

    Thanks for your solutions! 🙂

    In my particular case the syntax provided by dinusc works, however CMee your suggestion is also a good one. 

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 Launch!

Jump in, show your community spirit, and win prizes!

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 432

#2
Valantis Profile Picture

Valantis 362

#3
timl Profile Picture

timl 337 Super User 2026 Season 1

Last 30 days Overall leaderboard