Forum Discussion
Anonymous
5 years agoNot applicable
Subtract Between Rows with Same ID
Hi Team, I want to subtract rows with the same Id. Example is what i'm highlighting. Some TaskIDs are unique, some don't. Unique TaskID: We don't do anything. NOT Unique TaskId, i want to subtract...
- 5 years ago
Anonymous
Not sure if one ID will have only one baseline 1 or 0. if so ,you can try to create a new column.
Column = MAXX(FILTER('Table1',Table1[Task ID]=EARLIER(Table1[Task ID])&&Table1[baseline]=0),Table1[TaskBaselineDuration])-Table1[TaskBaselineDuration]
ryan_mayu
5 years agoSuper User
Anonymous
Not sure if one ID will have only one baseline 1 or 0. if so ,you can try to create a new column.
Column = MAXX(FILTER('Table1',Table1[Task ID]=EARLIER(Table1[Task ID])&&Table1[baseline]=0),Table1[TaskBaselineDuration])-Table1[TaskBaselineDuration]
- Anonymous5 years agoNot applicable
Thank you so much. Your instructions are awesome and work for my case.