Hello guys I have a code here which returns if there is already an existing value on gallery it works fine. but I want the selected gallery row to exclude filter of all items.
If(CountRows(Filter(Gallery1.AllItems,Scope= ScopeInput.Selected.Value && PBT = PBT.Selected.Value)) >= 1,true,false)
I want to select all items excluding the Gallery1.Selected Scope and PBT
Hi @nagestiada
Edited to avoid delegation
With(
{wCode: DataSource},
Sort(
Filter(
wCode,
Scope <> ScopeInput.Selected.Value &&
PBT <> PBT.Selected.Value
),
SortColumn,
Descending
)
)
Hi @nagestiada
This is for reference. In my example, Priority and Status are Choice column
With(
{wCode: 'Issue tracker'},
Sort(
Filter(
wCode,
Priority.Value <> PriorityDivisionCombo.Selected.Value &&
Status.Value <> StatusCombo.Selected.Value
),
Created,
Descending
)
)
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
203 | |
106 | |
56 | |
52 | |
41 |
User | Count |
---|---|
273 | |
160 | |
89 | |
81 | |
56 |