Hi,
I hope this is a simple question to answer. I am new to the power query so I need all help I can get. I need to filter out all project id:s ending on -**-**. In the example below I only want to keep e.g. 30000002 and 30000002-01, but I don't want to keep 30000002-01-01. I have tried to use the option "not ends with" but I don't get it to work.
Appreciate all your help
Anna
Solved! Go to Solution.
if the project_id is always in the same pattern as the sample data ie, 8 chars or 8-2 chars or 8-2-2 chars then
Add a column like this
= Table.AddColumn(#"Added Custom", "LastPos", each if Text.PositionOf([ProjectID], "-", Occurrence.Last) = 12 then 1 else 0)
That'll give a 1 in a new column for the 8-2-2 pattern.
Then you filter the rows (from the dropdown in column LastPos) to keep the 0 rows
Hi @annade22
You can add Custom column like below and later liter it > 3
Hi @annade22
You can add Custom column like below and later liter it > 3
if the project_id is always in the same pattern as the sample data ie, 8 chars or 8-2 chars or 8-2-2 chars then
Add a column like this
= Table.AddColumn(#"Added Custom", "LastPos", each if Text.PositionOf([ProjectID], "-", Occurrence.Last) = 12 then 1 else 0)
That'll give a 1 in a new column for the 8-2-2 pattern.
Then you filter the rows (from the dropdown in column LastPos) to keep the 0 rows
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
130 | |
19 | |
18 | |
14 | |
13 |
User | Count |
---|---|
156 | |
33 | |
30 | |
23 | |
18 |