Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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?
Solved! Go to Solution.
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
)
)
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
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |