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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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