|
Can you tell the difference between Automation, an AI workflow, and an AI agent? If you can't, you're not alone. The AI world right now is a mess of super confusing terms. Every vendor claims their tool has AI included (even when it’s just bolted on to the tool and delivers no value). Plus, everything is being called an ‘Agent’ even if it's just automation with a small amount of AI. So, you end up with these problems: You buy expensive tools that do the same things as your existing tools in slightly different ways. You avoid automating simple stuff. Because you think you need AI to do it, when in fact a basic script could work perfectly (e.g VBA in Excel or Apps Script in Google Docs). Plus, Your team doesn't trust any of it. So adoption stays low and nothing gets used. But, the good news here is that, once you know what each of these terms means, everything becomes clearer. You know what processes to keep, what to automate, and where AI should (and should not) be used. So today, we will make this clear.
|
1. Automation: A specific, rule-based process where one action automatically triggers another. It's the most predictable, like a simple IF/THEN statement.
An e-mail rule is an automation - IF I receive an e-mail from this address -> THEN move it to this folder.
2. AI Workflow: This is when instead of a clear rule, you need AI to do the sort of activity that a human would have to think about because the logic is not black and white (fuzzy logic).
IF I receive a spreadsheet of expense transactions THEN use AI to generate the category based on the Column C description.
3. AI Agent: Autonomous systems that can achieve a goal by using various tools and methods, which the AI chooses itself.
In this scenario you would simply say “Find my latest expense transactions and categorize them. Let me know when you’re done.”
Here’re some practical applications.
Example: Monthly Data Cleaning in Google Sheets
You have the same messy credit card statement every month. The columns are fixed, the headers are fixed, and your desired output always looks the same.
Here automation is perfect:
How to build this:
Step 1: Show AI your data and describe what you want
Open your messy Google Sheet. Select the first few rows (header + some data). Copy it into ChatGPT and say:
"Every month I get this credit card statement. I need to: keep columns C to E, delete the summary rows, extract the company name into a separate column, extract the cardholder name into a separate column, and put the clean data into a new tab called 'Clean Transactions'."
Step 2: Ask for the script
Say: "Write me a Google Apps Script to automate this."
ChatGPT will give you the code. Copy it.
Step 3: Run it
In Google Sheets: Tools → Script editor → Paste the code → Save → Run.
Google will ask for permission the first time. Approve it. Done.
Now every month, you just open the file and click "Run."
Nothing here requires judgment. Once the script works, you use it forever.
(Note - You could also use VBA here if you’re using Excel / desktop office apps, or Office Scripts if you're working in the cloud)
Example 1 (Simple) - Smarter Expense Categorization with a Custom GPT
Now imagine you want to categorize hundreds of transactions where the data is really messy, and the rules needed to transform the data are really fuzzy.
Your team member could have entered ‘lunch with client’, ‘evening meal’, or ‘food’ in a free text field, and no amount of standard automation can account for the number of variables.
This is where AI workflows come in, as you can add a step that acts like the human brain, to spot patterns, categorise, or even generate new data as part of the process.
How to build this:
Step 1: Create your GPT
Go to ChatGPT → Explore GPTs → Create. Tell it:
"You categorize expense transactions. Here are my categories: Travel, Food, Supplies, Marketing, Office. Ask me to upload transactions, then propose categories based on the description descriptions. If there’s anything you cannot categorise, output ‘Could Not Categorize’ in place of the category for us to review"
Step 2: Upload your data and let it work
Upload your transaction list. The GPT will categorize everything and flag anything it's unsure about.
Step 3: Review and correct
Check the "uncertain" items. When you correct something (like "Office Depot should be Supplies, not Other"), tell the GPT by adding the human reviewed transactions as examples within the GPT's knowledge so it knows for next time.
Example 2 (Advanced) - Smarter Expense Categorization with n8n
Maybe you want something that runs automatically every month without you pressing anything.
With n8n, you chain multiple tools together and include AI within the process:
How to build this:
Step 1: Set up the workflow
In n8n, create a new workflow. Add a Google Sheets node to read your transaction data.
Step 2: Add AI categorization
Add an OpenAI node. Give it a prompt: "Categorize these transactions into Travel, Food, Supplies, Marketing, Office. Also extract the location if you can identify it from the description."
Step 3: Write results and notify
Add a Google Sheets node to write the categorized data back. Add a Slack node to post a summary of what needs review (largest transactions, anything marked "Other").
Now it runs on its own. You just review the exceptions.
With AI Agents, you provide a goal, and the Agent figures out the "how" on its own.
What makes a REAL agent:
A real agent isn't just a chatbot answering questions. It's capable of:
Here are three examples of how real Agents are being deployed today.
NOTE: A lot of Agents are still in early stages or 'Beta'. I'd recommend testing on a small use case before trying to get an AI Agent to own any business-critical process.
Example 1: The "Accounting Automation" Agent (OpenAI)
Accounting firms are already using AI agents built on OpenAI's platform to automate structured accounting work. The best-documented case is Basis, which builds multi-agent systems for top accounting firms.
What Basis agents actually do:
Why this is agentic:
The agent doesn't just answer questions. It breaks down a reconciliation task into steps, calls the right tools (retrieval, code execution, data validation), and works through the entire workflow autonomously. If something doesn't match, it flags it and tries alternate reconciliation logic.
Example 2: The "Enterprise Workflow" Agent (Microsoft Copilot Studio)
Microsoft 365 Copilot Agents built via Copilot Studio have been deployed by multiple organizations.
Real example: Capita's Email Triage Agent
Capita (34,000 employees, major UK BPO firm) built a Copilot Studio agent that:
Why this is agentic:
These agents don't just search a knowledge base. They coordinate across Teams, Outlook, SharePoint, and external systems. When they can't find information, they escalate intelligently. When new data arrives, they adjust their routing logic.
Example 3: The "Legacy System" Agent (Claude Computer Use)
This is the newest and most radical form of agency. Anthropic's Claude can now "view" a computer screen and "move" a mouse cursor. This bridges the gap for legacy finance systems (old ERPs, banking portals) that are impossible to automate with standard scripts.
What Claude Computer Use has been proven to do (from independent testing):
Why this matters for finance:
Many finance teams are stuck with:
The scenario:
You say: "Log into the vendor portal, find all invoices dated 'October 2025', and download them to this folder."
What the Agent does (visually navigating like a human):
If the portal layout changes next month, the Agent adapts. If a page doesn't load, it refreshes and tries again.
Finance teams are wasting time on manual processes that could be 80% automated with simple scripts.
But instead of starting there, they're buying 'AI Agent' platforms because that's what everyone's talking about.
I understand this. Agents sound powerful (just look at the use cases I’ve described above) and you should experiment...
But, most of what you need doesn't require autonomy across systems. It just needs a workflow that runs the same way every time, or AI that helps you work faster while you stay in control.
So, pick one manual process. Map the steps. Decide what tool you will try, and give it a go.
You'll know more in 30 minutes of testing than 3 days of vendor demos.
Best,
Your AI Finance Expert,
Nicolas
P.S. - What did you think of this approach? Hit reply and let me know if you're planning to try this for your team (I read all replies).
P.P.S. - As a bonus, I am sharing with you my video tutorial on my top 3 AI strategies to eliminate manual work. Watch it now!
Join 270,000+ Professionals and receive the best insights about Finance & AI. More than 1 million people follow me on social media. Join us today and get 5 goodies from me!
Become an AI CFO in Just 1 Hour a Week If you’re a finance professional, and you feel like you have no time. Like you want to become a better business partner, but are working over-time just to close the month - I built the AI finance club for you. We have tested it across 10,000+ alumni in companies like SAP, Mercedes, Siemens and Chanel - And, in just 1 hour per week, you can learn the AI frameworks that will keep you ahead, instead of being left behind. Join the AI Finance Club Here Last...
Sponsored by Agicap Want to learn how to become an AI CFO? Join our FREE masterclass where I'll show you how to go from a traditional CFO to an AI CFO with super practical use cases you can start using straight away. Don't miss this 60 minute free masterclass with me. Spaces are limited so click the link below now to reserve your place. Reserve Your FREE Masterclass Seat Here Bonjour ;) Let me ask you this. How many times this week did you ask ChatGPT something, get back a response, and then...
Sponsored by SAP Staying up to date with SAP was always a big advantage for me in my career. And learning how finance teams are using AI and data to lead decision making will put you ahead. To make sure you don’t miss out on expert insights you can use in your work and to advance your career. Join SAP’s finance webinar series now by clicking the button below: Reserve Your FREE Space Here Hello hello, People ask me all the time this: “Nicolas, how do we keep our data safe using AI?” And, you...