@ckserra33
Hi Chris!
Please consider changing your Formula to the following:
Filter(
DropColumns(
SortByColumns(
AddColumns(
Search(
Filter(AmusementAssets,
(Dropdown8.Selected.Name = "All") || 'Status (cr3db_status)' = Dropdown8.Selected.Name,
(ComboBox1.Selected.Result = "All" || 'Current Store Name' = ComboBox1.Selected.Result)
),
tiGameName.Text, "cr3db_name"
),
"_calced", Value(NBV)
),
"_calced",
If(varNBVSort, Descending, Ascending)
),
"_calced"
),
SetForRetirement = Switch(Slider4.Value,
1, "Yes",
2, "No",
0, "*"
)
)
Now, this is assuming the SetForRetirement has a * in it.
Is that what you are referring to? Or is it that you want all SetForRetirement items to return if it is 0?
If so, then change the formula to:
Filter(
DropColumns(
SortByColumns(
AddColumns(
Search(
Filter(AmusementAssets,
(Dropdown8.Selected.Name = "All") || 'Status (cr3db_status)' = Dropdown8.Selected.Name,
(ComboBox1.Selected.Result = "All" || 'Current Store Name' = ComboBox1.Selected.Result)
),
tiGameName.Text, "cr3db_name"
),
"_calced", Value(NBV)
),
"_calced",
If(varNBVSort, Descending, Ascending)
),
"_calced"
),
Slider4.Value = 0 ||
SetForRetirement = Switch(Slider4.Value,
1, "Yes",
2, "No"
)
)
I hope this is helpful for you.