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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
DebbieE
Community Champion
Community Champion

Creating an 'Open' Measure to show if something is open against a date period e.g month

Im just starting to think about how to display the following

     Start Date        End Date             Fact

A   05/02/2019      06/09/2019        1

B   20/04/2019      03/05/2019         1

C   01/05/2019      29/05/2019         1

 

Obviously if you want to show by Start date you would get the following

     Feb 19    Apr 19    May 19

A    1

B                   1

C                                  1

 

But what happens  you want to display that its open between start and end dates ?

     Feb 19    May 19 Apr 19    May 19   Jun 19 Jul 19 Aug 19 Sep 19 Oct 19

A    1             1          1            1             1          1          1          1         1

B                                1            1

C                                              1

 

Is there an easy way of setting this up as a dax measure so you can create an 'open' Measure to use?

2 ACCEPTED SOLUTIONS

Hi @DebbieE 

 

check this out.

 

PBIX

 

If I answered your question, please mark my post as solution, this will also help others.

Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


View solution in original post

Hi @DebbieE ,

 

try this:

 

 

Fact Start = 
CALCULATE(
	SUM('Table'[Fact]);
	FILTER(
		ALLSELECTED('Date'[Date]);
		'Date'[Date] <= MAX('Date'[Date])
	)
)

 

 

 

Fact End = 
CALCULATE(
	SUM('Table'[Fact]);
	FILTER(
		ALLSELECTED('Date'[Date]);
        ENDOFMONTH('Date'[Date]) < MAX('Date'[Date])
	);USERELATIONSHIP('Date'[Date];'Table'[End Date])
)

 

 

 

If I answered your question, please mark my post as solution, this will also help others.

Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


View solution in original post

11 REPLIES 11
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi, thanks for the response. This one doesnt work because I have a start and and end date not single date.

amitchandak
Super User
Super User

Try something like this

calculate(count(claims[id]),filter(claims,claims[Open Date]<ENDOFMONTH('Date'[Date Filer]) && claims[Close Date]>ENDOFMONTH('Date'[Date Filer]) )

 

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

Hi, Unfortunately I cant use this one either because I dont have an Open date. i have a start date and an end date

Hi,

I do not know whom you are replying to but my solution should work.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @DebbieE 

 

check this out.

 

PBIX

 

If I answered your question, please mark my post as solution, this will also help others.

Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


DebbieE
Community Champion
Community Champion

mwegener the solution isnt quite working. 

 

ErrorwithOpenMeasure.JPG

This account is open from Januar through to March.

However in March, the open flag isnt being set because

If Account Start - Account End = 0 Then put nothing Else Account Start - Account End

January 1 - 0 = 1 So its set as 1

February 1 - 0 = 1 So its set as 1

March 1-1 = 0 so its set as not open

I dont know how to stop the Start Date Measure in March using the DAX you sent to me

Hi @DebbieE,

 

what do you wish?

Should March still be displayed as open?

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


DebbieE
Community Champion
Community Champion

This specific account closed on the 12st of March so it should be open in March and fully closed in April.

 

Ive tried to amend the measures slightly but Ive not been able to figure out how to do it.

 

I understand the Open DAX but Im struggling to get my head around the Fact_Start and Fact_End Dax

Hi @DebbieE ,

 

try this:

 

 

Fact Start = 
CALCULATE(
	SUM('Table'[Fact]);
	FILTER(
		ALLSELECTED('Date'[Date]);
		'Date'[Date] <= MAX('Date'[Date])
	)
)

 

 

 

Fact End = 
CALCULATE(
	SUM('Table'[Fact]);
	FILTER(
		ALLSELECTED('Date'[Date]);
        ENDOFMONTH('Date'[Date]) < MAX('Date'[Date])
	);USERELATIONSHIP('Date'[Date];'Table'[End Date])
)

 

 

 

If I answered your question, please mark my post as solution, this will also help others.

Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


DebbieE
Community Champion
Community Champion

It worked. 

 

Thank you so much

 

OpenMeasureNowWorking.JPG

 

Now all I need to do is try and understand how its all working which is a bit daunting.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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