List all but

HCF
New Member

I try to list all items except those completed and then I try to sort the items in a Ref field using the Valid If:
OrderBy(

SELECT(Tasks[Title], ([Phase]<>โ€œCompleteโ€)),

[Is Part Of],
True,
[Title],
False
)
But it doesnโ€™t work. what am I doing wrong?

Solved Solved
0 5 201
1 ACCEPTED SOLUTION

I figured and ended up with:

ORDERBY(

FILTER(
โ€œTasksโ€,
([Phase] <> โ€œCompleteโ€)),

IsBlank([Is Part Of]),
False,
IsBlank([MotherID]),
False,

[Title]

)

View solution in original post

5 REPLIES 5

Steve
Platinum 4
Platinum 4

Generate a list of all then remove those that are complete.

Thanks, but the Select statement works and filters the data needed. The OrderBy() function however, does not produce an output โ€œORDERBY has invalid inputsโ€ I do not understand why.

Good luck.

Sorry, I donโ€™t understand your response

I figured and ended up with:

ORDERBY(

FILTER(
โ€œTasksโ€,
([Phase] <> โ€œCompleteโ€)),

IsBlank([Is Part Of]),
False,
IsBlank([MotherID]),
False,

[Title]

)

Top Labels in this Space