The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
)
)
User | Count |
---|---|
24 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
9 | |
9 |