Forum Discussion
Duplicating a Table based on an Activities Moving Date.
- Anonymous2 years ago
Hi PeteyG
You can first duplicate the query,
In the new query, filter rows by [Activity ID] column and select Equals... and set it to equal to ACT-Con-016. This will give you the formula like below in the formula bar and remain only one row in the outcome.
= Table.SelectRows(#"Changed Type", each [Activity ID] = "ACT-Con-016")
Don't worry, you just need to change the equal sign "=" into "<=", then you will have the expected outcome like below.
Reference: Filter by values in a column feature description - Power Query | Microsoft Learn
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Hi PeteyG
You can first duplicate the query,
In the new query, filter rows by [Activity ID] column and select Equals... and set it to equal to ACT-Con-016. This will give you the formula like below in the formula bar and remain only one row in the outcome.
= Table.SelectRows(#"Changed Type", each [Activity ID] = "ACT-Con-016")
Don't worry, you just need to change the equal sign "=" into "<=", then you will have the expected outcome like below.
Reference: Filter by values in a column feature description - Power Query | Microsoft Learn
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!