Loading...

Decode and Fix: “This Data Type is Unsupported for Evaluation” in Power Apps

Decode and Fix: “This Data Type is Unsupported for Evaluation” in Power Apps

 One common frustration when building Canvas Apps over Dataverse is encountering this cryptic error:

 “This data type is unsupported for evaluation”

This message typically appears when Power Apps cannot process or render a specific Dataverse column type within a control or formula. While it may seem vague, it’s usually tied to specific patterns involving complex column types or runtime data structure mismatches.


In this blog, we'll explore common causes, scenarios, and practical fixes from both a developer and architectural standpoint.

Root Causes of the Error

1. Polymorphic Lookups

Dataverse supports polymorphic relationships (e.g., `Owner`, `Customer`, `Regarding`) that can point to multiple entity types.

These lookups can't be directly evaluated in Power Apps unless you cast the reference explicitly.

Use:

If(

    IsType(ThisItem.Customer, Account),

    AsType(ThisItem.Customer, Account).Name,

    AsType(ThisItem.Customer, Contact).FullName

)

2. Unsupported or Complex Column Types

Dataverse includes some column types that aren’t natively supported in Canvas App formulas—especially custom types, file/image columns, or certain relationship references.

These may return null or trigger evaluation errors unless handled with special logic or transformations.

 3. Choice and Multi-Select Choice Fields

Single-select Choices (Option Sets) are easier to evaluate using `Text(ThisItem.ChoiceField)`. However, multi-select choices are returned as a table, not a scalar value.

Use:

Concat(ThisItem.ChoiceField, Value, ", ")

Always check if the formula context supports scalar or table-based operations.

4. Explicit Column Selection (Performance Optimization)

When the "Explicit column selection" setting is enabled in your app, only selected fields are loaded from the Dataverse table.

If you reference a field that hasn’t been selected, it may return blank or throw this error.

Go to:

Data source → Edit fields → Add the missing columns manually

Troubleshooting Steps

Best Practices for Architects & Developers

  • Design with Data Types in Mind: Avoid overuse of polymorphic lookups and complex custom columns unless they’re absolutely needed.
  • Standardize UI Logic: Create reusable helper functions to evaluate and display polymorphic/choice fields.
  • Align Schema & App: Always re-publish and sync changes between Dataverse and Power Apps.
  • Monitor Formula Performance: Complex formulas with unsupported data types not only break evaluation but degrade app performance.

Common Pitfall Examples

Label.Text = ThisItem.Customer.Name // ❌ Throws evaluation error (polymorphic)

Label.Text = Text(ThisItem.MultiSelectChoice) // ❌ Invalid for multi-select

Fixed version

Label.Text = Concat(ThisItem.MultiSelectChoice, Value, ", ")

Conclusion

The “This data type is unsupported for evaluation” error is a clear sign that your app and data model are out of sync. Whether you're dealing with polymorphic relationships, multi-select fields, or explicit column selection issues, the key is to:

  • Understand the data type behavior
  • Use the right functions (`IsType`, `AsType`, `Concat`, etc.)
  • Configure your app’s data source correctly
  • Test early with real data

With a good grasp of Dataverse internals and Power Apps formula patterns, this error becomes not a blocker—but a signal for more precise modeling and UI logic.

Published on:

Learn more
Power Platform , D365 CE & Cloud
Power Platform , D365 CE & Cloud

Dynamics 365 CE, Power Apps, Powerapps, Azure, Dataverse, D365,Power Platforms (Power Apps, Power Automate, Virtual Agent and AI Builder), Book Review

Share post:

Related posts

10 Game-Changing Power Apps Use Cases for Businesses in 2026

As organizations move deeper into automation, AI integration, and process digitization, Microsoft Power Apps has evolved from a low-code tool ...

3 days ago

Automated Testing Power Apps – Controls and More

A while back I wrote an introduction post about automated testing Power Apps using Power Automate Desktop. Today, I'm going to look at automat...

3 days ago

Power Apps – Upcoming changes to license consumption experience

We are introducing updates to the Power apps license consumption experience designed to improve Power Apps licensing management. These changes...

5 days ago

Power Apps – Add AI record summary to model-driven apps

We are announcing the ability to add an AI record summary to model-driven apps in Power Apps. This feature will reach general availability on ...

5 days ago

Power Apps Code App: Integrate with Power Platform Connectors

In my last blog post on Power Apps Code Apps, I explained how to create a simple Code App and publish it to a Power Platform environment. In t...

5 days ago

Building a Cloud-Native Power Apps ALM Pipeline with GitLab, Google Cloud Build and PAC CLI: Streamlining Solution Lifecycle Automation

A unique combination to achieve deployment automation of Power Platform Solutions

7 days ago

Set the custom publisher on your Vibe coded Power Apps

Have you tried out the new Vibe coding at vibe.powerapps.com? Did you notice that your solutions will use the default publisher?

8 days ago

New Power Apps Experience: Build AI-Powered Apps at Vibe.PowerApps.Com

💡Key Insight: This AI-native platform, accessible at vibe.powerapps.com, transforms how we build business applications by leveraging AI agent...

10 days ago

Power Apps: Build a New App at Vibe.PowerApps.com

At Microsoft Ignite 2025, Microsoft introduced the new Power Apps—a new developer experience at vibe.powerapps.com. This new experience is AI-...

10 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy