Power-Fx icon indicating copy to clipboard operation
Power-Fx copied to clipboard

[Tabular Connectors]: import N:1 as tabular

Open MikeStall opened this issue 11 months ago • 0 comments

For CDP, Power Apps imports N:1 fields as scalars, not relationships.

Power Fx code should do that too to be consistent with Power Apps.

So this should work against a Salesforce table:

Filter(Opportunities, StartsWith(ThisRecord.OwnerId, "your_user_id_here"))

Where OwnerId is a N:1 lookup field. Because OnwerId is imported as a scalar (string) value and not a record.

This is different than Dataverse, where N:1 gets imported as a record.

Image

MikeStall avatar Feb 06 '25 22:02 MikeStall