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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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...

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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