Announcements
The warning appears because Power Apps uses static type inference, it looks at all the places a variable is defined to determine its data type. When the only definition it finds is Blank(), it has no type information to work with.
Blank()
The fix is to add at least one initialization of the variable with a real typed value somewhere in your app (e.g. App OnStart or Screen OnVisible).
Depending on your variable type:
If it holds a simple single-column Table of text:
UpdateContext( { colSelectedStreetNames: Table({Value: ""}) } );
UpdateContext( { colSelectedStreetNames: "" } );
If it holds a Record:
UpdateContext({colSelectedStreetNames: {StreetName: ""}})
You don't need to remove your existing Blank() reset lines , just make sure there is at least one other definition elsewhere that assigns a typed value. Power Apps only needs one typed reference to infer the variable's type and the warning will disappear.
Hope this helps! 🙂
If my reply helped you fix the issue, you can mark it as a Verified answer so the post is closed and easier for others to find. And if it was just helpful in any way, feel free to give it a Like ♥.
You must initialize the variable with a real value somewhere in your app before using it as Blank(). Currently, the variable is only declared as Blank() and is not used anywhere that's why it's giving this error else. If it isn’t needed, you should simply delete it.
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.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 549 Most Valuable Professional
Kalathiya 225 Super User 2026 Season 1
Haque 224