Forum Discussion
nicholas058
2 years agoFrequent Visitor
Creating a Measure/Column Which Shows the Most Recent Value and one which shows the Oldest
Good Morning, My first post on this forum, so I apologize if I'm not wording the question appropriately. However, I'm struggling to figure this out based on the existing articles I've looked at,...
Anonymous
2 years agoNot applicable
Hi nicholas058 ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create measures.
Old = var _1=minx(FILTER(ALL('Table'),'Table'[ID]=SELECTEDVALUE('Table'[ID])),'Table'[DATE])
return
IF(MAX('Table'[DATE])=_1,MAX('Table'[VALUE]),BLANK())old_re = MAXX(FILTER(ALL('Table'),'Table'[ID]=SELECTEDVALUE('Table'[ID])),[Old])
And so on.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.