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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.