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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Need help with DAX ( Return specific date)

Hello,

 

I need your help.

I have sales data as follows:

Jess90_0-1669677476043.png

I need to create a dax measure to return a date.

Result should be the date when Running total >= Target (60)

 

Thanks in advance. 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

try to create a measure with the code below:

 

Measure =
VAR Table1 =
    CALCULATETABLE(
        VALUES(TableName[Date]),
        TableName[RT]>=60
    )
RETURN MINX(Table1, TableName[Date])
 
i tried and it worked like this:
FreemanZ_0-1669680835063.png

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thanks @FreemanZ, thats exaclty what I was looking. 

v-yinliw-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try this method:

New a measure:

Result = CALCULATE(SUM('Sales'[Target Date]), 'Sales'[Running Total] >= 60)

The result is:

vyinliwmsft_0-1669699770470.png

And there is another mothed to solve your problem:

vyinliwmsft_1-1669699833436.png

Hope this helps you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

FreemanZ
Super User
Super User

try to create a measure with the code below:

 

Measure =
VAR Table1 =
    CALCULATETABLE(
        VALUES(TableName[Date]),
        TableName[RT]>=60
    )
RETURN MINX(Table1, TableName[Date])
 
i tried and it worked like this:
FreemanZ_0-1669680835063.png

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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