cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
orin1
Frequent Visitor

How to fix this error?

form1.item= If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First([@'Lunch Order']),SharePointIntegration.Selected)

Screenshot_18.png

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenBelz
Super User
Super User

@orin1 ,

First() is not Delegable, hence the Warning and that formula will always return the first record. If you do not want to see the warning, do this

With(
   {wLunch:LunchOrder},
    If(
       IsBlank(SharePointIntegration.Selected) || 
       IsEmpty(SharePointIntegration.Selected),
       First(wLunch),
       SharePointIntegration.Selected
   )
)

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

View solution in original post

2 REPLIES 2
WarrenBelz
Super User
Super User

@orin1 ,

First() is not Delegable, hence the Warning and that formula will always return the first record. If you do not want to see the warning, do this

With(
   {wLunch:LunchOrder},
    If(
       IsBlank(SharePointIntegration.Selected) || 
       IsEmpty(SharePointIntegration.Selected),
       First(wLunch),
       SharePointIntegration.Selected
   )
)

 

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

Hi @orin1 ,

Just checking if you got the result you were looking for on this thread. Happy to help further if not.

Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

Helpful resources

Announcements
Power Apps News & Annoucements carousel

Power Apps News & Announcements

Keep up to date with current events and community announcements in the Power Apps community.

Community Call Conversations

Introducing the Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Apps Community Blog Carousel

Power Apps Community Blog

Check out the latest Community Blog from the community!

Top Solution Authors
Top Kudoed Authors
Users online (4,858)