Forum Discussion
karlo
6 years agoFrequent Visitor
DAX - Problem to identify previous record
Hi everyone, I'm starting with DAX and I need your help, for a particular record I am trying to identify the previous record if the start date of the previous record is less. Also, if there is mo...
- Anonymous6 years ago
karlo
Please create a measureMeasure = CALCULATE(CONCATENATEX('Table','Table'[PRODUCT],"-",'Table'[PRODUCT]),FILTER(ALLEXCEPT('Table','Table'[ID]),'Table'[START]<MAX('Table'[START])))
Anonymous
6 years agoNot applicable
karlo
Please create a measure
Measure = CALCULATE(CONCATENATEX('Table','Table'[PRODUCT],"-",'Table'[PRODUCT]),FILTER(ALLEXCEPT('Table','Table'[ID]),'Table'[START]<MAX('Table'[START])))
- karlo6 years agoFrequent Visitor
Excellent vimal_parmar, I'll try again
Thank you very much!