Power Query: Revision Time – Part 9
5 June 2024
Welcome to our Power Query blog. Today, I continue to create a refreshable revision timetable by randomising the subject slots I need for the timetable.
As my salespeople take a well-earned break, many students here in the UK are preparing for exams in the summer. To help my own offspring get organised, I volunteered to create a refreshable printable revision timetable. This is the result:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image1-1715274309.png/9fa4928e14c7422c8be9c83417b61922.jpg)
I needed a list of topics, and to begin with, I created extra entries for topics that required more timeslots:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image2-1715274356.png/2734faf8bb0c4e8f3c8cb772fe0d7ba3.jpg)
We agreed on half-hourly slots, and I created a grid so that my daughter could indicate the slots that she wouldn’t be able to revise.
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image3-1715274377.png/bbef9530a5dd6e6f91072736ed0f9cc7.jpg)
When I first designed the solution, I included some Excel functions, but since this is a Power Query blog, I will ensure that I only use Power Query functions (apart from some formatting at the end!).
In Part 1, I converted my data into two [2] Tables: Subjects and Availability. I extracted Subjects to Power Query.
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image4-1715274404.png/413d7ef9314ea3ca270945c0b5f5b027.jpg)
I created the Availability query by taking a copy of Subjects, and amending it:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image5-1715274421.png/c10f40de073ab43a9f508ece457af593.jpg)
In Part 2, and Part 3, I calculated the number of subjects and the number of slots on Availability.
This gave me both totals:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image6-1715274443.png/2cfbc9eb1a21686e35d2beb4789969e5.jpg)
In Part 4, I calculated how many times each subject will appear in a new query, remembering to round up to whole slots.
This told me the number of slots that each subject should have for my example is three [3]:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image7-1715274461.png/d917c7c59d5b66cf2219a2c9f1650088.jpg)
In Part 5, I created a table where each subject appeared three times (i.e. the number of times given by Subject_Slots).
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image8-1715274478.png/2a017b84b1e503112bcfaf1e5561eae2.jpg)
In Part 6, I randomised the order of the slots ready to add to the timetable:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image12-1715274671.png/a8ca9f195c1932f5ffa66e4f4ab0c151.jpg)
In Part 7, I took a reference copy of the query Availability which I called TimeTable and began to transform it so that it is ready to receive the slot data.
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image13-1715277472.png/32061c33de06fa20fadf085e860e7280.jpg)
Last time, I appended the slot number data to the rest of the TimeTable query.
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image17-1715278202.png/397ea2f7e8ae1320663b671cc2ef24e3.jpg)
This means I have duplicate rows for my slot data, one with data in Slot Number, and one without. I can’t get rid of the rows without data in Slot Number as I need to retain the rows with ‘x’ in the Value column. However, I start with a simple filter to get the basic M code:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image12-1715279219.png/5b49948c45b46057a65aa2002a8f5d8a.jpg)
The step generated is:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image13-1715279238.png/b4d6b13f6bcaefed9d30e9a8138c8b79.jpg)
The M code is:
= Table.SelectRows(#"Appended Query", each ([Slot Number] <> null))
I need to add some logic to this:
= Table.SelectRows(#"Appended Query", each ([Slot Number] <> null or [Value] = "x"))
This retains all the rows I need:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image14-1715279296.png/fde37d3665e091f12748475e02e45ac6.jpg)
I may now sort the data into ascending Index order:
![](http://sumproduct-4634.kxcdn.com/img/containers/main/./image15-1715279313.png/020275cd12d7df6385b8bf3895a5d1f5.jpg)
This data is now ready to merge with the Random_Subject query. Next time, I will look at how I would have approached preparing TimeTable by merging instead of appending.
Come back next time for more ways to use Power Query!