Ok @Gorilla_8 ,
I am trying to help you with code can you please give me an example of the Or code you want to use - that way I can show you where and how it fits. As an example - it you are looking for two different possibilities on control values
If(
Checkbox_MaiorPorcentagem_1.Value = true ||
SomeOtherControlValue = whatever;
Sort(
collTaskListForGallery;
TrabalhoPercentualdaTarefaConcluÃdo;
Descending
)
If you are asking about Sort alternatives, you can do an If / Else alternative
If(
Checkbox_MaiorPorcentagem_1.Value = true
Sort(
collTaskListForGallery;
TrabalhoPercentualdaTarefaConcluÃdo;
Descending
);
Sort(
collTaskListForGallery;
SomeOtherField
Descending/Ascending
)
but you cannot make an Or on Sort as it is a result, not a condition to get the result.
Is this what you are asking?
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.