How to order dimension sprint by Name

Hi,

Please could you help me to order the dimension in the first column by name ASC?

The formula of the sprint dimension I used:

Aggregate(
Generate(
– get all boards
[Sprint].[Board].Members,
– access all children - sprints from the board and get the last 1 closed
Tail(
Filter(
[Sprint].CurrentMember.Children,
[Sprint].CurrentMember.GetBoolean(“Closed”)),
1)
)
)

Thanks, Jedid-Jah

@eazyBI-Staff can you help me?

Hi,

Please, apply the Order function on top of Generate:

Aggregate(
Order(
Generate(
-- get all boards
[Sprint].[Board].Members,
-- access all children - sprints from the board and get the last one closed
Tail(
Filter(
[Sprint].CurrentMember.Children,
[Sprint].CurrentMember.GetBoolean("Closed")),
1)
),
[Sprint].CurrentMember.GetCaption,
BASC
)
)

Kindly,
Janis, eazyBI support

Thank you very much @janis.plume !