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

Top Solution Authors