How to filter sprints from Sprint dimension using Key value

Hi,
I need to filter 2 sprints alone based on their Sprint KEY (id) value.
Lets say we have 2 sprints
Sprint 1 - KEY = 500
Sprint 2 - Key = 540

I need to filter only these 2 sprints having KEYS as 500 & 540. Please help in achieving this.

eazyBI by default adresses members by member names. However, if the member names might change over time or you have some specific usecase, you can address them by key as well if needed.

The pattern is this:
[dimension].[level].&[key]
You would like to address the dimension and level in this dimension and use “&” symbol to specify that KEY will follow in the next square brackets.

Here I created a calculated member in Sprint dimension to address two sprints by key - 38 and 41:

Aggregate({
 [Sprint].[Sprint].&[38],
 [Sprint].[Sprint].&[41]
})

Daina / support@eazybi.com