基于多个 PowerApps 下拉值的导航按钮

Navigation button based on several PowerApps dropdown values

我正在尝试设置要选择的强制下拉菜单以便转到下一个屏幕。

请注意,下拉菜单的默认值为 Select 您的答案(下拉菜单的第一个选项)。

这是我使用的代码,但似乎没有通过:

If(
    IsBlank(type_4.Selected.Value), 
    IsBlank(type_3.Selected.Value), 
    IsBlank(type_2.Selected.Value),
    Notify("Fill all the fields to continue", NotificationType.Error),
    Navigate(End,ScreenTransition.Cover) )

如果下拉列表的默认选项是 'Select your answer',那么您可以使用 Or function (or the Or operator) 来组合条件,表达式类似于下面的表达式:

If(
    Or(
        type_4.Selected.Value = "Select your answer",
        type_3.Selected.Value = "Select your answer",
        type_2.Selected.Value = "Select your answer"),
    Notify("Fill all the fields to continue", NotificationType.Error),
    Navigate(End,ScreenTransition.Cover) )