I needed to remove all values by trimming then do the check like so:

If(!IsBlank(Trim(TextInput5_1.Text)), Patch(BookingTest,
{ Title: title, EventDate: TextInput5_1.Text });

Just time to concat the rest of the values now...

Answer from Shucoder on Stack Overflow
🌐
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.
🌐
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
To test specifically for a blank value use if(Value = Blank(), ... instead of IsBlank. The IsBlank function considers empty tables as not blank, and IsEmpty should be used to test a table.
🌐
Power Apps Guide
powerappsguide.com › blog › post › hide-empty-fields-not-filled-in
Forms - How to hide fields that are blank, or have not been completed - Power Apps Guide - Blog
To hide the fields that are not blank, we can go through each card on the display form and we can set the visible property to hide the card, if the associated data value is blank.
🌐
Microsoft Power Platform
community.powerplatform.com › forums › thread › details
if( not empty then add specific text in card
Maybe this is a simple solution but i am getting frustrated in this formula · I have this code working, but it needs to be the other way around
🌐
Microsoft Community Hub
techcommunity.microsoft.com › microsoft community hub › communities › products › content management › power apps and power automate in sharepoint
If(Not(IsBlank([DataCardValue]) is always returning true in cases where it should not | Microsoft Community Hub
2] Issue here: If the tab is not selected, PA sets the fill to green whether or not the DataCardValue14 field has a value. PA always responds as if this field has a value, even if it does not value. The result is the tab fill is always green even in cases where it should be grey (field is blank).
🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › Building-Power-Apps › power-apps-if-field-is-not-blank-then-populate-another-field › td-p › 1492585
power apps if field is not blank then populate ano...
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.
🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › Building-Power-Apps › Return-items-that-do-not-have-a-blank-value › td-p › 22548
Forums | Microsoft Power Platform Community
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.
Find elsewhere
🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › Building-Power-Apps › Display-custom-text-if-field-is-blank › td-p › 99103
Display custom text if field is blank - Power Platform Community
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.
🌐
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 - IsEmpty(IceCream) The result will be “true” as the table “IceCream” does not contain any rows in it. Coalesce (Value1 [, Value2, ….]) The Coalesce function evaluates its arguments in order and returns the first value that isn’t blank or an empty string. Use this function to replace a blank value or empty string with a different value but leave non-blank and non-empty string values unchanged. If all the arguments are blank or empty strings then the function returns blank, making Coalesce a good way to convert empty strings to blank values.
🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › Building-Power-Apps › Validate-or-show-a-message-in-label-if-field-is-empty › td-p › 449721
Validate or show a message in label, if field is empty
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.
🌐
Reddit
reddit.com › r/powerapps › if is blank for a date field?
r/PowerApps on Reddit: If Is Blank for a Date Field?
January 27, 2023 -

Trying to get the below syntax to return 'true' since my Date Field is blank but it doesn't, it's always false. Did some research and apparently, date picker has a hidden value no matter what.

So how could I write this syntax to get date picker to return a true boolean when it's blank?

UpdateContext({varMissingDate: If(IsBlank(DataCardValue12.Text),true,false)});

🌐
Reddit
reddit.com › r/powerapps › blank() isn’t the same as “”?
Blank() isn’t the same as “”? : r/PowerApps
December 22, 2023 - A community dedicated to Microsoft PowerApps. ... Sorry, this post was deleted by the person who originally posted it. 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.
🌐
Reddit
reddit.com › r/powerapps › flow not accepting blank values from my app
r/PowerApps on Reddit: Flow not accepting blank values from my app
August 29, 2022 -

I have a very simple flow to take inputs from my app (basically a glorified form) and outputs the data to an Excel sheet on SharePoint. If any one of the text input fields in my Run() command is blank, the flow fails and says that there was an invalid value for that item. I don't want to put default values of 0 in and make my users delete it to enter numbers.

This doesn't happen with my other apps. For example, I have another one with a "Notes" field that is very rarely filled out, which this app also has, and Power Automate doesn't complain.

What could possibly be making a difference between my apps?

🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › General-Power-Automate › PowerApps-Hide-button-if-text-field-is-blank › td-p › 775527
PowerApps: Hide button if text field is blank
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.
🌐
Platformsofpower
platformsofpower.net › home › using the coalesce function in power apps
Using the Coalesce Function In Power Apps - Platforms of Power
September 29, 2024 - The Power Apps coalesce function lives in the same family as Blank, IsBlank and IsEmpty. It’s a very efficient way to evaluate controls and outputs to return the first value that’s not blank. It can also help set default values if all analysed outputs are blank.
🌐
Microsoft Power Platform Community
powerusers.microsoft.com › t5 › Building-Power-Apps › How-to-filter-by-not-blank-that-can-be-delegated › td-p › 293270
How to filter by not blank that can be delegated
Quickly search for answers, join discussions, post questions, and work smarter in your business applications by joining the Microsoft Dynamics 365 Community.