Automation but at what cost?

While driving into work the other day there was some heavy fog in places and I noticed cars driving without their lights on.  It was at this point I realised my own headlights weren’t on, so quickly turned then on.   I found myself wondering why I hadn’t turned them on in the first place?    The answer is that I had become a little bit complacent of the automatic lighting function in my car which turns on my lights as and when needed, making life so much more convenient and less effort for me.   This got me thinking about what the drawbacks might be for where automation is used, particularly in relation to software based automation solutions such as PowerAutomate.  I suspect the use of automation in schools, especially given new AI advances, will become all the more common as we seek to try to address workload challenges, so what are the possible drawbacks or challenges:

Initial costs:

Implementing automation comes with a cost.   This might be in terms of infrastructure, software licensing or simply in terms of the time taken to design and implement an automation solution.    There will also be costs ensuring the creation of appropriate documentation for the solution where documentation is important but also something which is often overlooked.   We need to be aware of these costs although generally they are outweighed by the longer term gain.

Maintenance:

There may also be costs associated with the maintenance of an automation solution.   This will be reliant on appropriate documentation and staff with the appropriate skill level to understand and maintain the automation solution.   This may also be quite difficult as sometimes an automation solution may be running for a significant period of time, possibly years, before any issues arise, where, when they do arise, staff involved in the solution may no longer easily recollect how the solution was designed thereby making it all the more difficult to resolve the issues. 

Lack of flexibility:

Automated systems are designed to perform specific tasks and may not be easily adaptable to changes such as changes in school processes or the required outcomes.   There is also a challenge that as we seek to improve we may increasingly complicate the automation solution which in turn may make it more fragile and likely to fail plus more difficult to maintain.   I note complexity is a current concern of mine in that this complexity, although allowing us to achieve more or be more efficient, often leads to more moving parts, more complex processes, etc which therefore mean there are more opportunities for things to go wrong.   Continually increasing complexity must at some point reach a threshold at which it becomes unsustainable and my view is that we need to consider this in advance of this point, and therefore need to seek to identify and focus on what matters and attempt to simplify things.

Dependence on technology:

This is the issue which started this post, my complacency or dependency on the automation to turn my headlights on.   Due to the availability of automation I had stopped checking my lights.    In schools we may implement automation solutions to notify staff on specific events, etc, however we need to be careful that we don’t become reliant on this automation.    In the event an issue occurs and automation fails we still need to operate.    We also need to be able to identify when the automation has failed and this might not be as easy to identify is it was in relation to the lights on my car.   This for me is one of the main issues in establishing a balance between improved ease and convenience through automation, and increased reliance on, and therefore reduced ability to work without, automation.

Decreased human interaction:

Automation can lead to a decrease in human interaction and communication, which can have negative effects on workplace culture and employee morale.  So, although there may be efficiency benefits it will likely reduce the need to talk to, email or otherwise communicate with others where we are social animals and rely on social interaction.   At a time when wellbeing is such a key factor in education, and where social interaction with other human beings is a critical part of our wellbeing as social animals, we need to carefully consider the balance here.

Conclusion

While automation can bring many benefits such as increased convenience, ease, efficiency, reduced long term costs, and improved quality control, there are also potential drawbacks.    We therefore need to be careful of the balance between the positives and the potential drawbacks of automation.    As my car journey proved, automation isn’t without its potential issues, with over reliance being only one of these.

Create a PowerAutomate based on a Shared Form

Only recently found out how to do this however it makes a significant difference allowing me to now create PowerAutomate (previously Flow) automations but based on a Form created by someone else but shared with me.

To do this you need to first identify the FormID for the form.   To do this, just look at the sharing link for the form.  This is the link which someone looking to complete the form would fill out, not the link which may have been shared with you to edit the form.

The FormID is the characters following the ID= part of the URL, the section redacted below:

Now in Power Automate, create a new flow with a Form submission as a trigger.

Using the FormID combo list, you will see all of your forms but not those shared with you.   As such select the option at the bottom for Enter Custom Value.

Now paste the FormID characters from earlier into the FormID box.

You can now build the rest of your PowerAutomate as required, based on the responses to the Form which has been shared with you.

Power Automate: Course Booking

Was doing a bit more playing with Power Automate again recently and thought I would share.

This time I was looking at finding a way where staff could book on an internal training course but where there would be a maximum number of places available.

My solution involves a Form to submit requests, a PowerAutomate to manage the requests and check if a given session has capacity and a SharePoint list to store the submitted request details for those people who successfully book a place.

So the steps:

  1. Create a form for your staff to make their training request
  2. Create a SharePoint list which will store the accepted requests;   The list should contain fields matching the questions within you form.
  3. Create the PowerAutomate to manage the submitted requests including emailing confirmations and apologies dependent on if the course is full or not.

Now I am going to detail point 3 above, as the other points are reasonably straight forward to achieve.

One of the first things we need to do is to Initialise a new variable which will be used to store the count of the number of people already booked on a course.    This should be an integer variable and set initially to 0.   Within the PowerAutomate we will change the value later based on the number of records in the SharePoint list.

Next I am using a Get Items action to get all of the items from the SharePoint list.   This will get you all the records submitted so far which is basically a list and count of the number of people already booked on the course.   

We now need to set the variable so that it stores the count of the number of records already in the SharePoint list.   To do this use a Set Variable action.    Within the value of this action we want to use an expression using the expression below:

length(body(‘GetItems‘)?[‘value’])

Note GetItems should be the name of the Get Items action mentioned earlier.    This expression will basically count the number of records in the SharePoint list as accessed via the earlier Get Items action.   

From here it is simply a case of using a Condition to check if the variable is less than or equal to you maximum number of attendees, and then send out appropriate emails either acknowledging acceptance on the course or indicated that the course is currently full.

And so, we have a basic little CPD course booking process complete with maximum number of attendees and confirmation emails.