Hi
I have a requirement based on which I need to remove certain rows from the final output. From the below table, I need to leave out all those cost elements that starts with 5 and pick the ones that starts with 6.
I do not know whether this can be achieved using the Filter Tool. Kindly help
Cost Element | Posting Date | Test 1 |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | test |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | Test |
520323 | 24-06-2024 | Test |
602024 | 12-06-2024 | t |
602024 | 12-06-2024 | t |
602024 | 28-06-2024 | t |
602024 | 28-06-2024 | t |
602024 | 12-06-2024 | |
602024 | 28-06-2024 |
Solved! Go to Solution.
A StartsWith function in a filter tool should work well for your use case
StartsWith([Cost Element], “6”)
@alexnajm I thought about such a parameter but it is not there
Sorry @alexnajm
You meant a function. I just saw that
Thanks @alexnajm
It works. I will mark this as solution