Hello
I am trying to filter my sharepoint listbox and i need it to
First select my schoolidnr ( Kostnadsställe="1003" ) i works and when i use
Filter( tblProgram; StartsWith(Program; "E") Or StartsWith(Program; "S")).Program it works
But mixing them no good result , my wish is to see programs with name starting on E or S only in shool nr 1003
This is one of lots of combos i have trying with no good result , is it possible to make this filter
Filter(tblProgram;Kostnadsställe="1003") && Filter(tblProgram; Or StartsWith(Program; "E" Or StartsWith(Program; "S")).Program
Solved! Go to Solution.
Hi @dalacarelia_196 ,
Try the filter below - some suggestions on the way I would approach it (and there are obviously other solutions):-
Filter(
tblProgram,
Kostnadsställe="1003",
(
StartsWith(Program, "E") ||
StartsWith(Program, "S")
)
)
Hi @dalacarelia_196 ,
Try the filter below - some suggestions on the way I would approach it (and there are obviously other solutions):-
Filter(
tblProgram,
Kostnadsställe="1003",
(
StartsWith(Program, "E") ||
StartsWith(Program, "S")
)
)
Thanks this saves time for me i am so happy 4 this excelent solution 🙂
You are welcome - happy to help
Hello again sir
If i want the result of the program search to be A-Z or Z-A where to put the ;Ascending or Desc
Filter(
tblProgram;
Skola=ddskola.SelectedText.Value;
(
StartsWith(Program; "E") ||
StartsWith(Program; "V")
)
)
Hi @dalacarelia_196 ,
@PowerAddict was too quick for me here.
My response is almost exactly the same - I tend to prefer Sort if it works. Also toggle button is exactly what I use (I call it vSort).
Sort(
Filter(
tblProgram,
Skola=ddskola.SelectedText.Value,
(
StartsWith(Program, "E") ||
StartsWith(Program, "V")
)
),
If(
vSort,
Ascending,
Descending
)
)
Hello
If i understod this right so i need a trigger 4 the sorting , is it not possible to force it to desc or asc
Hi @dalacarelia_196 ,
Absolutely - I just over-read it a bit
Sort(
Filter(
tblProgram,
Skola=ddskola.SelectedText.Value,
(
StartsWith(Program, "E") ||
StartsWith(Program, "V")
)
),
Ascending
)
User | Count |
---|---|
251 | |
102 | |
94 | |
48 | |
37 |