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 / How do I indicate that...
Power Apps
Answered

How do I indicate that a data entry is not complete

(0) ShareShare
ReportReport
Posted on by 26

I have a Browse screen that lists peoples names. I also have an Edit Screen that lists all their details (address, DOB etc). I would like to have an indicator so that I can know on the Browse screen whether the information is incomplete. I have tried doing a series of tests with an IF statement to check if anything is not filled in and writing a

IF(ThisItem.Address = "" Or ThisItem.Suburb = "" Or ThisItem.DOB = "",ThisItem.Fname & " !",ThisItem.Fname)

which is supposed to put a ! at the end of the Surname, but it's not working. I am putting this function in the text section of FName. Any help would be much appreciated.

Categories:
I have the same question (0)
  • peter_Ch Profile Picture
    26 on at

    I even tried adding an icon to the BrowseGallery and setting its visible parameter to

     

    If(IsBlank(Coalesce(ThisItem.Address,ThisItem.Suburb,ThisItem.Email)),true,false)

    but doesn't show for entries I know are blank!

     

  • CU-18081211-6 Profile Picture
    9,270 Moderator on at

    @peter_Ch ,

    this is quite strange, try to use Len() function like:

    Len(ThisItem.Address)=0….

    hope it helps !

  • Verified answer
    v-qiaqi@microsoft.com Profile Picture
    Microsoft Employee on at

    Hi @peter_Ch,

    Do you want to check if there is a blank item within a record?

    Could you please share the error message if there exists?

    Not sure the column type of the Address and Suburb and DOB and Fname, are they both Text column type in your data source?

    Put a Label and set the Text property as below:

    If(IsBlank(ThisItem.Address ),"NotFilled!",ThisItem.Address )

    If the Label shows "NotFilled!", it means that this record has a blank value within.

    So on your side, please select all the Labels and set the Text property of each to their own column name:

    If(IsBlank(ThisItem.Column),"NotFilled!",ThisItem.Column)
  • peter_Ch Profile Picture
    26 on at

    What I actually did was a series of IsBlanks for each field.

    This went into the visible property of an icon I had placed in the BrowseGallery.

    If(IsBlank(ThisItem.EContactNum) Or IsBlank(ThisItem.EContactName) Or IsBlank(ThisItem.Address) Or IsBlank(ThisItem.Suburb) Or IsBlank(ThisItem.Mobile) Or IsBlank(ThisItem.Email) Or IsBlank(ThisItem.SCtype) Or IsBlank(ThisItem.DOB) Or IsBlank(ThisItem.SCReference), true , false )

    I know it looks unwieldy but if anyone can find a shorter way. The coalesce function was doing an And function which is not what I wanted.

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!

Leaderboard > Power Apps

#1
wolenberg_ Profile Picture

wolenberg_ 119 Super User 2026 Season 1

#2
WarrenBelz Profile Picture

WarrenBelz 107 Most Valuable Professional

#3
Haque Profile Picture

Haque 103

Last 30 days Overall leaderboard