I have a column in my table Programme called Period No. of type Whole Number, this contains 13 different period in a year. for eg.
I want to apply a step in my power query that would only filter the data for the maximum period in the table, as in the below example as of now I only want period 202002 to filter and load, (as this is the latest period)
In the next month I want it to filter for period 202003 and so on (meaning only pick up the maximum period from the column. How do I achieve this in Power Query.
Solved! Go to Solution.
Hi @smjzahid ,
Try this code for a custom column and filter the result:
if [Column1] = List.Max(#"Changed Type"[Column1]) then 1
else 0
Change the bold part with your last step name.
Hi @smjzahid ,
Try this code for a custom column and filter the result:
if [Column1] = List.Max(#"Changed Type"[Column1]) then 1
else 0
Change the bold part with your last step name.
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!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
139 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
160 | |
33 | |
33 | |
23 | |
18 |