🌐
Microsoft Learn
learn.microsoft.com › en-us › power-platform › power-fx › reference › function-isblank-isempty
Blank, Coalesce, IsBlank, and IsEmpty functions - Power Platform | Microsoft Learn
The IsBlank function tests for a blank value or an empty string. The test includes empty strings to ease app creation since some data sources and controls use an empty string when there's no value present.
🌐
CRM Crate
crmcrate.com › home › how to operate with blank / empty values in power apps?
How to operate with Blank / Empty values in Power Apps? - CRM Crate
May 13, 2024 - IsBlank( Value ) The IsBlank function tests for a blank value or an empty string. The test includes empty strings to improve app creation since some data sources and controls use an empty string when there is no value present.
🌐
Code SharePoint
codesharepoint.com › PowerPlatform › check-value-is-blank-or-not
PowerApps Check if value is blank or not - Code SharePoint
The IsBlank function in Power Apps is used to determine whether a value is blank or not. This function is particularly useful for checking whether fields are empty, whether controls contain data, or for validating user input.
🌐
Reddit
reddit.com › r/powerapps › isempty and isblank functions suddenly stopped working for combo box
r/PowerApps on Reddit: IsEmpty and IsBlank functions suddenly stopped working for combo box
December 29, 2021 -

I’m pretty new to power apps and have been using it for about a month to make something for work. The app is a form that uses a share point list to get data for combo boxes.

I have been using IsBlank and IsEmpty to check if any boxes do not have a selection made, and if so to leave the submit button blank. When I initially set it up it worked perfectly with no problems. However when I tried to test something else today I found it had completely stopped working for the combo boxes I have made. The weird part is that I use the exact same code in another test app and it still works fine, and I tested if it works on a different combo box separate from the form on that same page and it also works. The combo boxes are formatted exactly the same so I’m confused why it is not working.

The button used an if statement like this:

If(isblank(combobox.selected.result) || isempty(combobox.selected.result), displaymode.disabled, displaymode.edit)

I have tried everything I could find on google like countRows, LEN, removing the .result part, etc.

Any possible suggestions?

🌐
YouTube
youtube.com › optimal training group
IsBlank() & Blank() in PowerApps - YouTube
In this video, I go over what IsBlank() and Blank() and how to use.
Published   August 12, 2021
Views   7K
🌐
Microsoft Power Platform
community.powerplatform.com › forums › thread › details
Power Platform Community Forum Thread Details
Hello, guys. I just don't know what to do anymore, so PLEASE, give me a hand or two, if possible · I have a job to do to my boss. I creater a powerapps screen that saves data in a Sharepoint List, but one field of this screen, a combo box, receives data from the List to charge the choices available
🌐
BytePlus
byteplus.com › en › topic › 498659
Isblank vs isempty powerapps
Build better products, deliver richer experiences, and accelerate growth through our wide range of intelligent solutions. Core content of this page: Isblank vs isempty powerapps
Find elsewhere
🌐
Matthew Devaney
matthewdevaney.com › home › power apps › what’s the difference between these power apps functions?
What's The Difference Between These Power Apps Functions? - Matthew Devaney
November 13, 2025 - IsBlank(LookUp(Locations, City="Tokyo"))Code language: JavaScript (javascript) Another approach would be to use a FILTER function and check whether any results were found.
🌐
Software Zone 365
softwarezone365.com › home › blogs › efficiently count non-blank and blank rows in power apps using isblank
Power Apps IsBlank Function: Counting Rows Efficiently
November 30, 2023 - Power Apps IsBlank Function simplifies data analysis by effectively counting non-blank and blank rows in Power Apps applications.
🌐
Platformsofpower
platformsofpower.net › home › using the coalesce function in power apps
Using the Coalesce Function In Power Apps - Platforms of Power
September 29, 2024 - When I started building Power Apps, I’d identify blank values by combining the If and IsBlank functions. Inevitably, the more controls or outputs there are to analyse, the more Power Fx you’ll end up with.
🌐
Microsoft Learn
learn.microsoft.com › en-us › power-platform › power-fx › reference › function-iferror
Error, IfError, IsError, and IsBlankOrError functions - Power Platform | Microsoft Learn
The IsBlankOrError function tests for either a blank value or an error value and is the equivalent of Or( IsBlank( X ), IsError( X ) ). When enabling error handling for existing apps, consider replacing IsBlank with IsBlankOrError to preserve ...
🌐
Dynamics Community
community.dynamics.com › blogs › post
How to check if a collection is empty in Power Apps canvas apps
Hello everyone and welcome to my blog. In today’s blog, I will show how can you check if a collection is empty in Power Apps. There are primarily two ways you can check if a collection is empty. The first is using the IsEmpty function.
🌐
Reddit
reddit.com › r/powerapps › blank() isn’t the same as “”?
Blank() isn’t the same as “”? : r/PowerApps
December 24, 2023 - Archived post. New comments cannot be posted and votes cannot be cast. Share ... Blank will tell you if a column or record does not have a value. “” evaluates if a string is empty. Blank will evaluate on most types of columns. But “” works only for text columns.