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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Emplyee operation level by start & End

Hi i will report opertion level by Employee on Start and Date date. 

CesarBoldrino_1-1696239057256.png

 

 

if Selectedmoth = November 

A   o1

C  o3

D  o3

 

if Selectedmoth = September

A   o1

C  o3

D  o1

 

 

any Idee? 

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

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.

vrzhoumsft_0-1696384303937.png

 

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.

 

 

View solution in original post

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

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.

vrzhoumsft_0-1696384303937.png

 

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.

 

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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