Forum Discussion
Anonymous
5 years agoNot applicable
Find match in previous value
Hi, I'm looking for a solution for the below issue, I have a table where in every day I get new data post refresh, I want to check the data of a perticular column eg: Name in the below table and ...
- 5 years agoPrevious days Name exist? CC =VAR _currentdate = Data[Date]VAR _previousdaystablenamecolumn =SUMMARIZE ( FILTER ( Data, Data[Date] < _currentdate ), Data[Name] )RETURNIF ( Data[Name] IN _previousdaystablenamecolumn, "Yes", "No" )
Anonymous
5 years agoNot applicable
Thanks for picking up my query, Appreciate it.
I want to know if one more time Dawood name appears will the previous value become "No" and current date value becomes "Yes" ?
- Jihwan_Kim5 years agoSuper User
Thanks for the feedback.
If one more Dawwod is added, 1st previous Dawood already has the 2nd previous Dawood.
So, I think, it will still show yes.
You can try.