Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
eliasayyy
Memorable Member
Memorable Member

Sum of days with selected value and swicth

hello everyone i have a date timeline slicer and i have measure

test measure = 
VAR _days =
SWITCH(
    SELECTEDVALUE(Test[Month Number]),
     1 ,31,
     2,28,
     3,31,
     4,30,
     5,31,
     6,30,
     7,31,
     8,31,
     9,31,
     10,31,
     11,30,
     12,31
)
RETURN
_days

 

if i select one value it works and returns day but if i select 2 months, it will return blank how do i add them?

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @eliasayyy 

test measure =
SUMX (
VALUES ( Test[Month Number] ),
SWITCH (
Test[Month Number],
1, 31,
2, 28,
3, 31,
4, 30,
5, 31,
6, 30,
7, 31,
8, 31,
9, 31,
10, 31,
11, 30,
12, 31
)
)

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

Hi @eliasayyy 

test measure =
SUMX (
VALUES ( Test[Month Number] ),
SWITCH (
Test[Month Number],
1, 31,
2, 28,
3, 31,
4, 30,
5, 31,
6, 30,
7, 31,
8, 31,
9, 31,
10, 31,
11, 30,
12, 31
)
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.