Forum Discussion
patri0t82
Post Patron
3 years agoUngrouping Totals
Hello, I have three columns in Power Query.. [Date], [Value] and [Count]. My first two rows, for example, are: 1/1/2023 | Proactive | 163 1/1/2023 | Injections | 3 I nee...
- 3 years ago
You can add a new custom column with
{1 .. [Count]}This will create a list column of size count. You can then expand this column and delete it if you don't need the index number of each value.