본문 바로가기
기술자료 (KB)/Power Platform

Power Apps : RemoveIf Network Error 해결 방법

by 이완주 2023. 6. 14.

Power Apps에서 SharePoint Lists의 목록 내의 데이터를 모두 삭제하고자 한다.

목록 이름 : OrgDepartment 

 

아래 가이드대로 정상적으로 목록은 삭제 되나 그다음 Network Error가 나타난다.

RemoveIf(OrgDepartment,true)

 

Remove and RemoveIf functions in Power Apps

https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-remove-removeif

 

Remove and RemoveIf functions in Power Apps - Power Platform

Reference information including syntax and examples for the Remove and RemoveIf functions in Power Apps.

learn.microsoft.com

[해결방법]

아래 방법으로 실행하였을 경우 속도도 빠르고 에러도 나타나지 않음을 확인.

 

Remove(OrgDepartment, OrgDepartment);

 

댓글