Forum Discussion
Need help removing alternate rows
- 7 years ago
You should be able to accomplish this in PowerQuery using the filter keys, selecting Text and keeping rows that "Contain" 2018.
Or, if you prefer, use the actual M for this but make sure to reference your last step and change the field name to reflect your data. Here is the code for putting this below my last step of Change Type 1:
= Table.SelectRows(#"Changed Type1", each Text.Contains([Estimates], "2018"))
You should be able to accomplish this in PowerQuery using the filter keys, selecting Text and keeping rows that "Contain" 2018.
Or, if you prefer, use the actual M for this but make sure to reference your last step and change the field name to reflect your data. Here is the code for putting this below my last step of Change Type 1:
= Table.SelectRows(#"Changed Type1", each Text.Contains([Estimates], "2018"))
- 101Mathew7 years agoAdvocate V
If you only wanted every other row, you could insert an index column, then divide this by 2, and only keep the rows with either a full interga or decial (your choice)
regards,
Mathew