문제

I've created a cascading dropdown (4 levels) in PowerApps. Everything works as it should, but there's a problem.

In the list from which i'm getting the lookup items i have a few that have no Title. This makes my cascading dropdown display Region as blank (first option) and subregion as the subregion of those blank items.

This is what i've tried, but with no luck.

Filter(Distinct(RegionCountryLocation, Title), !IsBlank(Title))

Kinda have to get rid of the blank title options in my dropdown. Any tips?

도움이 되었습니까?

해결책

Try with following condition:

Distinct(Filter(RegionCountryLocation, Title <> ""), Title)

OR

Distinct(Filter(RegionCountryLocation, !IsBlank(Title)), Title)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top