Forum Discussion
Anonymous
6 years agoNot applicable
Unite identical neighboring rows
Hello, I would like to combine rows that are identical and neighboring, see example below. The order of the entries matters, since they have been listed chronologically. Remo...
- 6 years ago
Anonymous
Hi
Select all the 3 columns>>>From the Transform Tab>>Group BY.
In the formula bar, just modify the formula by adding the text in red font below
= Table.Group(#"Changed Type", {"ID", "State", "Previous State"}, {{"ALL", each _, type table [ID=text, State=text, Previous State=text]}},GroupKind.Local)
Zubair_Muhammad
Community Champion
6 years agoAnonymous
Hi
Select all the 3 columns>>>From the Transform Tab>>Group BY.
In the formula bar, just modify the formula by adding the text in red font below
= Table.Group(#"Changed Type", {"ID", "State", "Previous State"},
{{"ALL", each _, type table [ID=text, State=text, Previous State=text]}},GroupKind.Local)Anonymous
6 years agoNot applicable
Works perfectly! :smileyvery-happy: Thank you