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
Matthew77
Frequent Visitor

Measure to return value between two dates (start date and end date)

Hi,

 

I want to create a measure that returns the number of units between 2 dates. I have went through so many different types of codes I may be over complicating this for myself. I have a table with the following type of data :

 

Contract IDUnitsStart DateEnd Date
1231101/01/2000 30/06/2018
1231001/07/2018 01/04/2021
1231202/04/2021 

 

I want the measure to return the number of units. I have a chart with year as the axis but for some reason it doesnt seem to want to plot correctly to show how the number of unit changes over a given period of time. 

 

For example a chart to show when the number of units changed from 10 to 12 etc between two dates. I am able to produce the below manually by using a chart but I need it as a measure to add to another chart:

 

Matthew77_0-1627476686283.png

 

 

Thanks

1 ACCEPTED SOLUTION

Hi Amitchadak,

 

It would be like the below. I just wish to have a measure that will show how the number of units has changed over the years:

 

Matthew77_0-1627480839177.png

THIS CODE WORKED:

 

Units =
CALCULATE(
VALUES(Contract[Units]),
FILTER(
Contract,
Contract[EffectiveDate] <= MAX('Date'[Date])
&& Contract[EndDate] >= MIN('Date'[Date])
 
but to no avail. 

View solution in original post

5 REPLIES 5
Fowmy
Super User
Super User

@Matthew77 

The data you have provided and the explanation are not sufficient to understand your problem.
Please share sample data and the expected results.

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Hi I have added the example output

amitchandak
Super User
Super User

@Matthew77 , can you share the expected output?

 

I have two blogs they can offer some help

How to divide/distribute values between start date or end date or count days across months/days: https://community.powerbi.com/t5/Community-Blog/How-to-divide-distribute-values-between-start-date-o...

 

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi Amitchadak,

 

It would be like the below. I just wish to have a measure that will show how the number of units has changed over the years:

 

Matthew77_0-1627480839177.png

THIS CODE WORKED:

 

Units =
CALCULATE(
VALUES(Contract[Units]),
FILTER(
Contract,
Contract[EffectiveDate] <= MAX('Date'[Date])
&& Contract[EndDate] >= MIN('Date'[Date])
 
but to no avail. 

Actually after reloading that code seems to work! Thanks anyway 🙂

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.