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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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