Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi i will report opertion level by Employee on Start and Date date.
if Selectedmoth = November
A o1
C o3
D o3
if Selectedmoth = September
A o1
C o3
D o1
any Idee?
Solved! Go to Solution.
Hi @Anonymous ,
I suggest you to add an unrelated date table and then create a measure to filter your visual.
Measure =
VAR _SELECTSTART = MIN('Calendar'[Date])
VAR _SELECTEND = MAX('Calendar'[Date])
RETURN
IF(MAX('Table'[Range start])<=_SELECTEND && OR(MAX('Table'[Range end]) > _SELECTSTART, MAX('Table'[Range end]) = BLANK()),1,0)
Add this measure into visual level filter and set it to show items when value = 1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I suggest you to add an unrelated date table and then create a measure to filter your visual.
Measure =
VAR _SELECTSTART = MIN('Calendar'[Date])
VAR _SELECTEND = MAX('Calendar'[Date])
RETURN
IF(MAX('Table'[Range start])<=_SELECTEND && OR(MAX('Table'[Range end]) > _SELECTSTART, MAX('Table'[Range end]) = BLANK()),1,0)
Add this measure into visual level filter and set it to show items when value = 1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
98 | |
98 | |
38 | |
37 |
User | Count |
---|---|
152 | |
120 | |
73 | |
72 | |
63 |