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

Latest Value

Hi Guys,

 

I need some help on this. Here's my data:

DateStoreProductAnswer
16/07/2018McDonaldPizzaYes
17/07/2018McDonaldPizzaNo
16/07/2018McDonaldBurgerNo
17/07/2018McDonaldBurgerNo
16/07/2018KFCPizzaYes
17/07/2018KFCPizzaYes
16/07/2018KFCBurgerNo
17/07/2018KFCBurgerYes

 

I need to always get the Answer for latest Date. Here what result should be:

DateStoreProductAnswer
17/07/2018McDonaldPizzaNo
17/07/2018McDonaldBurgerNo
17/07/2018KFCPizzaYes
17/07/2018KFCBurgerYes

 

1. Can you please tell me the DAX formula to create above table?

 

2. Can you please tell me what should be the Measure for using Answer in a visualisation?

 

Thanks in advance.

Rob

2 ACCEPTED SOLUTIONS
Ashish_Mathur
Super User
Super User

Hi,

 

You may download my file from here.

 

Hope this helps.


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

View solution in original post

@Anonymous

 

As a NEW Table ("Calculated Table"), you can use

 

New Table =
VAR temp =
    ADDCOLUMNS (
        Table1,
        "RANK", RANKX ( FILTER ( Table1, [Store] = EARLIER ( [Store] ) ), [Date],, DESC, DENSE )
    )
RETURN
    FILTER ( temp, [RANK] = 1 )

Regards
Zubair

Please try my custom visuals

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

 

You may download my file from here.

 

Hope this helps.


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

Hi Ashish,

 

Thanks for your help.

 

However, I need a measure that will display the value for Answer in any visualisation. Is that possible?

 

And/or create a new table in DAX that filters the below data only:

DateStoreProductAnswer
17/07/2018McDonaldPizzaNo
17/07/2018McDonaldBurgerNo
17/07/2018KFCPizzaYes
17/07/2018KFCBurgerYes

 

Thanks

Hi,

 

That is what my solution does.  Perhaps i do not understand your requirement.


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

Hi Ashish,

 

Can you please let me know the syntax for producing the below new table in DAX? 

 

Using this feature: new table.PNG

 

DateStoreProductAnswer
17/07/2018McDonaldPizzaNo
17/07/2018McDonaldBurgerNo
17/07/2018KFCPizzaYes
17/07/2018KFCBurgerYes

 

Thank you

@Anonymous

 

As a NEW Table ("Calculated Table"), you can use

 

New Table =
VAR temp =
    ADDCOLUMNS (
        Table1,
        "RANK", RANKX ( FILTER ( Table1, [Store] = EARLIER ( [Store] ) ), [Date],, DESC, DENSE )
    )
RETURN
    FILTER ( temp, [RANK] = 1 )

Regards
Zubair

Please try my custom visuals

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.