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.
Welcome to the Power BI Community Show! Jeroen ter Heerdt talks about the importance of Data Modeling.
Mark your calendars and join us on Thursday, May 26 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
141 | |
25 | |
22 | |
10 | |
9 |
User | Count |
---|---|
150 | |
40 | |
31 | |
18 | |
17 |