基于多个 PowerApps 下拉值的导航按钮
Navigation button based on several PowerApps dropdown values
我正在尝试设置要选择的强制下拉菜单以便转到下一个屏幕。
- 调用下一个屏幕结束
- 第一个下拉菜单名为 type_4
- 第二个下拉菜单称为 type_3
- 第三个下拉菜单被称为 type_2
请注意,下拉菜单的默认值为 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) )
我正在尝试设置要选择的强制下拉菜单以便转到下一个屏幕。
- 调用下一个屏幕结束
- 第一个下拉菜单名为 type_4
- 第二个下拉菜单称为 type_3
- 第三个下拉菜单被称为 type_2
请注意,下拉菜单的默认值为 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) )