Hi all,
I have a combo box which filters the names of the account. When the combo box is selected it must filter the nps score for the selected name and if it is less than 9 it must give popup.
The code on On change of Combo box is :
If(
!Is Blank(ComboBox1_7.Selected),
Min(
Filter(
ResponseListData,
'Account Name' = ComboBox1_7.Selected.Value
).NPS,
NPS < 9
),
Update Context({toggle popup: true})
)
But even if it is less than 9 the popup is not working,
Any help/suggestion on this?
Thanks in advance.