cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors