form1.item= If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First([@'Lunch Order']),SharePointIntegration.Selected)
Solved! Go to Solution.
@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.
@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.
User | Count |
---|---|
124 | |
87 | |
84 | |
75 | |
69 |
User | Count |
---|---|
215 | |
178 | |
140 | |
106 | |
83 |