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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Markus_R
Frequent Visitor

Filter two periods with one slicer by due date

Hi,

 

i'm currently trying to create a report that displays the group of a user to a specified due date and the tasks he is working on at a moment.

For this i got four tables which somehow look like this:

 

bi_data.png

 

 

In addition i've got a Calender Table, for which i created a Slicer so only one date can be selected.

 

The result that i want is a table which includes the Group, all users in the group which got a task assigned to them at the due date, and a column for each Task(1-3) (there won't be more then 3 tasks ever), where either a 1 or a 0 is displayed if the user is assigned or not.

For example (not related to the data supplied, just basic how it should look like):

bi_data2.png

If a user has no task assigned to the due date it should not get displayed.

 

Is there a way i can create a measure for that?

If needed i can make changes to the tables in PowerQuery too.

 

Thanks alot for your responses.

 

Markus

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

No sure I got it completely. But you can use cross join to remove your date relation and userelation to use a relation.

 

You can have formula like

 

Due project =

var _max_date = max(selected(date[date])

calculate( count(project[id]),filter(project, start_date<=_max_date  && (due_date is null || due_date>_max_date )) ,<use crossjoin or filter to remove time join>)

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

No sure I got it completely. But you can use cross join to remove your date relation and userelation to use a relation.

 

You can have formula like

 

Due project =

var _max_date = max(selected(date[date])

calculate( count(project[id]),filter(project, start_date<=_max_date  && (due_date is null || due_date>_max_date )) ,<use crossjoin or filter to remove time join>)

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

A little change on your formula did the trick for me.

 

Thank you very much!

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.