2017-11-01 25 views
0

現在のユーザーの電子メールでブラウズ画面にレコードをフィルタリングしたい。私はOffice 365ユーザーの接続を使用しました。私は、閲覧画面の項目のプロパティに書かれているPowerAppsの現在のユーザーに基づくフィルタレコード

ロジック:

SortByColumns(Search(Filter('Time Entries', User().Email= Office365Users.MyProfile().Mail) , TextSearchBox1.Text, "cf_name"), "createdon", If(SortDescending1, Ascending,Descending)) 

エラー:

Part of this filter cannot be evaluated remotely due to service limitations.The local evaluation may produce suboptimal or partial results.

答えて

0

を設定するために、あなたのアプリのONSTARTを変更してみてください(CurrentUserに、ユーザー())、その後、メール= Office365Users.Myprofile()メール使用CurrentUser.Email = Office365Users.Myprofile()

関連する問題