SlideShare a Scribd company logo
Introduction to the
Excel Automation
and Data Manipulation
24.06.2024
Africa Series Day 4 — Kickstart for Automation Student Developers
2
Senior RPA Developer @SterlingBank
UiPath MVP 2024
linkedin.com/in/emmanuel-kolawole/
Senior Consultant @dipoleDIAMOND
UiPath MVP 2024
linkedin.com/in/afeararomi/
Global Manager,
Marketing Community@UiPath
linkedin.com/in/crisvidu/
Emmanuel Kolawole Afe Araromi Cristina Vidu
Meet Today’s Hosts
3
Meet Today’s Speakers
Automation Project Manager @InnGen
2023 UiPath Student Dev Champion
linkedin.com/in/moazu-razak/
RPA Developer
at Boundaryless Group
linkedin.com/in/michael-patrick/
Moazu Razak Michael Patrick
RPA Developer
at dipoleDIAMOND
linkedin.com/in/joseph-osubu/
Joseph Osubu
4
1. Welcome
2. Session Agenda
3. About Excel Automation and Excel Activities
4. About Datatables
5. Data Manipulation and Data Conversion
6. About Strings and String Manipulation
7. QnA
8. Close out
Today’s Agenda
5
About Today’s Session
• The meetup will not last for more than 1.5 hours
• You are encouraged to network and share your LinkedIn in the chat box
• We apologize for keeping you on mute till Q&A time
• Please use the chat to place questions too between now and Q&A
6
Excel Automation
7
What's Excel automation?
Microsoft Excel automation is a technique used to automate repetitive or time-
consuming tasks in Microsoft Excel using software tools or coding techniques.
Excel automation can be used to automate tasks such as data entry,
calculations, and report generation. The automation of Excel can lead to
improved accuracy, efficiency, and cost savings. It can also be used to create
powerful data visualizations.
UiPath.Excel.Activities package provides two ways to interact with Excel
workbooks:
● Workbook or File Access Level
● Excel or Excel App Integration
8
9
Excel Automation - What can you automate?
• Create report:
• Read and write data
• Sort data
• Data Filters
• Pivot tables
• Excel formatting
• Work with ranges – append, auto fill, add/delete rows/columns, sheet
• Check reports for errors:
• Delete duplicate data
• Data reconciliation
• Fill in forms with data from Excel spreadsheets
• Extract data from emails and move to desktop/web application
• Data extraction and migration
• Data Table to Excel, Excel to Data Table
10
How do I use it?
• Package: UiPath.Excel.Activities
11
Data Tables
One of the most important
activities in Studio – DataTable
• Maintain Big Data in Data Table
variables
• Read from excel
• Merge data tables
• Output to excel
• Data processing in loop
• Data lookup
• Filter
• Data Sorting
• Remove duplicates
12
Why are DataTables important in Excel
automation?
• Efficient handling of large amounts of data: When working with large datasets,
DataTables allow for more efficient handling of data, including sorting, filtering,
and grouping.
• Improved data accuracy: DataTables can be used to validate data and ensure
accuracy before exporting to Excel, reducing the risk of errors or mistakes.
• Better data organization: DataTables can help organize data in a structured
format, making it easier to navigate and understand.
• Integration with other systems: DataTables can be integrated with other
systems or applications, allowing for seamless data transfer and analysis
across different platforms.
13
Excel Demo Run-through 1
Open Excel File Read Input File Add a New Column
Calculate Estimated
Value
End Process
Update Excel with New
sheet containing
updated record
14
Excel Demo 2
• Go To https://www.rpasamples.com/opportunities
• Use Scrape Data to retrieve the Account list into a DataTable
• Use “Write Range” within Excel Application Scope
• Add a new column to the table with “Add Column Data”
• Loop through the DT and check if qty is over 40 -> add a note
• Use “Write Range” again (or write cell if it’s not too long) to update the Excel
15
Data Manipulation
16
Data Manipulation with Strings in Studio
▪ Data manipulation is the process through which the data is altered using
various operations in order to facilitate its usage
▪ Allows the user to change data from one form to another by
concatenating, converting, replacing, extracting, splitting or segregating
to make it ready to be used by RPA in workflows
Data Manipulation allows us to customize the data in order to be able to
generate the desired outcome based on the process needs
17
Concat
• Concatenates the string representations of two specified objects
• String.Concat(Var1, Var2)
Contains
• Checks whether a specified substring occurs within a string.
• Returns true or false
• VarName.Contains(“Test”)
Format
• Converts an entire expression into a string (and Inserts them into another text)
• Reduces complexity and increases readability
• String.Format(“{0} is {1}”, VarName1, Varname2)
IndexOf
• Returns the zero-based index of the first occurrence of a character in a string
• Varname.Indexof(“A”)
Strings and String Manipulation
● Some of the operations that can be performed on strings are:
18
Methods for String Manipulations
Join
• Concatenates the elements in a collection and displays them as string
• String.Join(“|”, CollectionVariable)
Replace
• Replaces all the occurrences of a substring in a string
• VariableName.Replace(“original”, “replaced”)
Split
• Splits a string into substrings using a given separator
• VariableName.Split(“|”c)(index)
Substring
• Extracts a substring from a string using the starting index and the length
• VariableName.Substring(StartIndex, Length)
Strings and String Manipulation
19
Variables
▪ Data of all kinds can be stored in variables, and there are several variable types in
Studio that can be classified into three types
Variable
Types Scalar
Characters
Booleans
Numbers
Collections
Arrays
Lists
Strings (a collection of characters)
Dictionary
Tables
Two dimensional structures that hold
data indexed by rows and columns
20
Data conversion is the process of converting one type of data to another type.
The methods for data conversion include:
Simply assigning the
data value to the
desired data type.
In UiPath, explicit
assignment is
generally used for data
conversion
• Eg:
Integer.parse(“1243”)
to convert string to
number
Assign
Convert any datatype
to string using the
.ToString method.
•Eg: the user can convert
DateTime datatype to string
datatype or number to string
and vice versa
.ToString Method
Stores any kind of
data, including text,
numbers, dates, and
arrays.
Automatically
converted to other
types to perform
certain actions.
The first element in the
expression is used as
a guideline for what
operation Studio
performs
GenericValue
Variable
Data Conversion
21
What is a Regular Expression?
Regular Expression (RegEx) is a specific search pattern that can be used to easily
match, locate and manage text. However, creating RegEx expressions may be
challenging. UiPath Studio contains a RegEx builder that simplifies the creation of
regular expressions. Uses of RegEx include:
● Input Validation
● String Parsing
● Data Scraping
● String Manipulation
Some business scenarios where RegEx is used include; Extracting phone numbers
that start with a certain digit, Collecting all the street names from a bulk text, even if
they don't follow a specific pattern - some of them contain "Street", others "Rd." .etc
22
Practice Exercise 1
Extract Email With Regex
1. Start a new project. Add a ‘Sequence’, rename it, and add an annotation.
2. Add a Read Text File activity to the sequence.
◆ Add “Template.txt” in the Filename property field
◆ Create a new variable inside the Output property field and name it InputData.
3. Add a Matches activity the workflow.
◆ Add InputData in the Input property field.
◆ Create a new variable inside the Result property field (use CTRL + K to auto-assign the correct
type) and name it FoundEmailMatches.
◆ Click Configure Regular Expression button to configure the regular expression. Select Email as
the value for the RegEx property and Exactly 1 as the value for the Quantifiers property.
◆ Set the RegexOption property field value to IgnoreCase.
◆ Click Save.
23
Practice Exercise 1
4. Add a Log Message activity, set its Log Level to Info and add the following message:
"New employee IDs will be generated for the following email addresses:".
5. Add a For Each activity.
◆ Add FoundEmailMatches variable in the List of items property field.
◆ Add emailAddress in the items property field.
◆ Add a Log Message activity inside the Body sequence.
● Set the Log Level to Info and add emailAddress.Tostring in the Message property
field.
6. Run the project in Debug mode and check the Output Panel.
24
What is a list variable?
A list variable in UiPath is a type of variable that can hold a collection or sequence of data items. It
allows you to store and manage multiple values of the same data type (such as strings, numbers, or
custom objects) within a single variable Unlike arrays, it does not have a fixed number of elements.
Lists provide specific methods of manipulation, such as:
● Adding and removing items.
● Searching for an element.
● Looping through the items (and performing certain actions on each).
● Sorting the objects.
● Extracting items and converting them to other data types.
How to initialize list variables
To initialize a variable is to specify an initial value to assign to it. All variables are given an initial value
when they are declared. However, this process differ between value or reference type variables.
Data Manipulation with Lists and Dictionaries
in Studio
25
a. Value type - For numeric, Boolean, DateTime and other value types, the compiler will give them a
valid value if we do not explicitly do so
b. Reference type - Reference type variables, like Lists and Dictionaries, initialize to the object we
provide. Hence, the compiler will not assign a value if we don't.
How to initialize list variables
● The first way was to create a list type of variable. Then, we used a Build Collection activity to add
items to the list and specify the list variable to hold the items.
● The second way was to create a list type of variable, then add the items inside the Default value
field. Then, initialize the list by typing new List of Type from the specified items. new List(of String)
Data Manipulation with Lists and Dictionaries
in Studio
26
What is a dictionary variable?
Dictionary variables (Dictionary<TKey, TValue>) are collection type of variables of (key, value) pairs, in which
the keys are unique. Think of the Address Book in your mobile phone, where each entry has corresponding
data (name, phone number(s), email address, etc).
The data types for both keys and values have to be chosen when the variable is declared. Data types within
dictionaries can be any of the supported variables (String, Int32, etc) including Dictionary<TKey, TValue>.
Some business scenarios in which you will most likely encounter dictionaries include Storing configuration
details or other information that needs to be accessed throughout a process, Storing the job titles or other
relevant information of employees etc.
The operations that are most often associated with dictionaries are:
● Adding and deleting (key, value) pairs. VarName.Add(Key, Value) VarName.Remove(Key)
● Retrieving the value associated with a key. VarName.Item(Key)
● Re-assigning new values to existing keys. VarName.Add(Key, Value)
Data Manipulation with Lists and Dictionaries
in Studio
27
What’s Next?
Global Student Developer Chapter
https://community.uipath.com/global-student-developer/
Log in to UiPath Academy academy.uipath.com
● Go to the Learning Plans page
● Enrol for the Automation Developer Associate Training course
https://bit.ly/4c8mHem
● Take the “Excel Automation with the Modern Experience in Studio” lesson
● Take the “Data Manipulation with Strings in Studio” lesson
Session 5: Making your Automation Journey Continuous and Beneficial
● Series Registration Page https://bit.ly/3Vz0G1d
28
Goodbye! But Stay Close…
● community@uipath.com
● www.community.uipath.com
Happy Automation!

More Related Content

Similar to Day 4 - Excel Automation and Data Manipulation

Algorithms and Data Structures
Algorithms and Data StructuresAlgorithms and Data Structures
Algorithms and Data Structures
sonykhan3
 
Data structure and algorithm.
Data structure and algorithm. Data structure and algorithm.
Data structure and algorithm.
Abdul salam
 
Introduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICSIntroduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICS
HaritikaChhatwal1
 
Data Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptxData Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptx
GIRISHKUMARBC1
 
Quick dive to pandas
Quick dive to pandasQuick dive to pandas
Quick dive to pandas
Robin Kiplangat
 
b,Sc it data structure.pptx
b,Sc it data structure.pptxb,Sc it data structure.pptx
b,Sc it data structure.pptx
classall
 
.Net Classes and Objects | UiPath Community
.Net Classes and Objects | UiPath Community.Net Classes and Objects | UiPath Community
.Net Classes and Objects | UiPath Community
Rohit Radhakrishnan
 
Data Structure & Algorithm.pptx
Data Structure & Algorithm.pptxData Structure & Algorithm.pptx
Data Structure & Algorithm.pptx
Mumtaz
 
algo 1.ppt
algo 1.pptalgo 1.ppt
algo 1.ppt
example43
 
b,Sc it data structure.ppt
b,Sc it data structure.pptb,Sc it data structure.ppt
b,Sc it data structure.ppt
classall
 
Cassandra data modelling best practices
Cassandra data modelling best practicesCassandra data modelling best practices
Cassandra data modelling best practices
Sandeep Sharma IIMK Smart City,IoT,Bigdata,Cloud,BI,DW
 
b,Sc it data structure.pptx
b,Sc it data structure.pptxb,Sc it data structure.pptx
b,Sc it data structure.pptx
classall
 
Taming the shrew Power BI
Taming the shrew Power BITaming the shrew Power BI
Taming the shrew Power BI
Kellyn Pot'Vin-Gorman
 
BI Suite Overview
BI Suite OverviewBI Suite Overview
BI Suite Overview
Bruno Saraiva
 
The Missing Link: Metadata Conversion Workflows for Everyone
The Missing Link: Metadata Conversion Workflows for EveryoneThe Missing Link: Metadata Conversion Workflows for Everyone
The Missing Link: Metadata Conversion Workflows for Everyone
Andrea Payant
 
Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel training
EmilyE120
 
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdfRPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
Cristina Vidu
 
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdfUiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
Diana Gray, MBA
 
Sample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docxSample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docx
todd331
 
Data Analysis – Technical learnings
Data Analysis – Technical learningsData Analysis – Technical learnings
Data Analysis – Technical learnings
InvenkLearn
 

Similar to Day 4 - Excel Automation and Data Manipulation (20)

Algorithms and Data Structures
Algorithms and Data StructuresAlgorithms and Data Structures
Algorithms and Data Structures
 
Data structure and algorithm.
Data structure and algorithm. Data structure and algorithm.
Data structure and algorithm.
 
Introduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICSIntroduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICS
 
Data Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptxData Structure & aaplications_Module-1.pptx
Data Structure & aaplications_Module-1.pptx
 
Quick dive to pandas
Quick dive to pandasQuick dive to pandas
Quick dive to pandas
 
b,Sc it data structure.pptx
b,Sc it data structure.pptxb,Sc it data structure.pptx
b,Sc it data structure.pptx
 
.Net Classes and Objects | UiPath Community
.Net Classes and Objects | UiPath Community.Net Classes and Objects | UiPath Community
.Net Classes and Objects | UiPath Community
 
Data Structure & Algorithm.pptx
Data Structure & Algorithm.pptxData Structure & Algorithm.pptx
Data Structure & Algorithm.pptx
 
algo 1.ppt
algo 1.pptalgo 1.ppt
algo 1.ppt
 
b,Sc it data structure.ppt
b,Sc it data structure.pptb,Sc it data structure.ppt
b,Sc it data structure.ppt
 
Cassandra data modelling best practices
Cassandra data modelling best practicesCassandra data modelling best practices
Cassandra data modelling best practices
 
b,Sc it data structure.pptx
b,Sc it data structure.pptxb,Sc it data structure.pptx
b,Sc it data structure.pptx
 
Taming the shrew Power BI
Taming the shrew Power BITaming the shrew Power BI
Taming the shrew Power BI
 
BI Suite Overview
BI Suite OverviewBI Suite Overview
BI Suite Overview
 
The Missing Link: Metadata Conversion Workflows for Everyone
The Missing Link: Metadata Conversion Workflows for EveryoneThe Missing Link: Metadata Conversion Workflows for Everyone
The Missing Link: Metadata Conversion Workflows for Everyone
 
Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel training
 
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdfRPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
RPA Summer School Studio Session 2 - The Fundamentals of UiPath Studio .pdf
 
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdfUiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
UiPath Studio Session 2 - The Fundamentals of UiPath Studio - Final Slides.pdf
 
Sample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docxSample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docx
 
Data Analysis – Technical learnings
Data Analysis – Technical learningsData Analysis – Technical learnings
Data Analysis – Technical learnings
 

More from UiPathCommunity

UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
UiPathCommunity
 
Dev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous DiscoveryDev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous Discovery
UiPathCommunity
 
Day 5 - Making your Automation Journey Continuous and Beneficial.pdf
Day 5 - Making your Automation Journey Continuous and Beneficial.pdfDay 5 - Making your Automation Journey Continuous and Beneficial.pdf
Day 5 - Making your Automation Journey Continuous and Beneficial.pdf
UiPathCommunity
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
UiPathCommunity
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
UiPathCommunity
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
UiPathCommunity
 
RPA - Orchestrator - Modern folder & Move to Cloud
RPA - Orchestrator - Modern folder & Move to CloudRPA - Orchestrator - Modern folder & Move to Cloud
RPA - Orchestrator - Modern folder & Move to Cloud
UiPathCommunity
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
UiPathCommunity
 
Automatisierung in Aktion: Einführung in UiPath RPA für Kommunen
Automatisierung in Aktion: Einführung in UiPath RPA für KommunenAutomatisierung in Aktion: Einführung in UiPath RPA für Kommunen
Automatisierung in Aktion: Einführung in UiPath RPA für Kommunen
UiPathCommunity
 
UiPath Community - Copenhagen Community Revival Event
UiPath Community - Copenhagen Community Revival EventUiPath Community - Copenhagen Community Revival Event
UiPath Community - Copenhagen Community Revival Event
UiPathCommunity
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
UiPathCommunity
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
UiPathCommunity
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
UiPathCommunity
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
UiPathCommunity
 
WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyone
UiPathCommunity
 
Dev Dives: Master advanced authentication and performance in Productivity Act...
Dev Dives: Master advanced authentication and performance in Productivity Act...Dev Dives: Master advanced authentication and performance in Productivity Act...
Dev Dives: Master advanced authentication and performance in Productivity Act...
UiPathCommunity
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
UiPathCommunity
 
Test Automation with Gen AI_Final_Presentation
Test Automation with Gen AI_Final_PresentationTest Automation with Gen AI_Final_Presentation
Test Automation with Gen AI_Final_Presentation
UiPathCommunity
 
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
UiPathCommunity
 

More from UiPathCommunity (20)

UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
 
Dev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous DiscoveryDev Dives: Mining your data with AI-powered Continuous Discovery
Dev Dives: Mining your data with AI-powered Continuous Discovery
 
Day 5 - Making your Automation Journey Continuous and Beneficial.pdf
Day 5 - Making your Automation Journey Continuous and Beneficial.pdfDay 5 - Making your Automation Journey Continuous and Beneficial.pdf
Day 5 - Making your Automation Journey Continuous and Beneficial.pdf
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
 
RPA - Orchestrator - Modern folder & Move to Cloud
RPA - Orchestrator - Modern folder & Move to CloudRPA - Orchestrator - Modern folder & Move to Cloud
RPA - Orchestrator - Modern folder & Move to Cloud
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
 
Automatisierung in Aktion: Einführung in UiPath RPA für Kommunen
Automatisierung in Aktion: Einführung in UiPath RPA für KommunenAutomatisierung in Aktion: Einführung in UiPath RPA für Kommunen
Automatisierung in Aktion: Einführung in UiPath RPA für Kommunen
 
UiPath Community - Copenhagen Community Revival Event
UiPath Community - Copenhagen Community Revival EventUiPath Community - Copenhagen Community Revival Event
UiPath Community - Copenhagen Community Revival Event
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyone
 
Dev Dives: Master advanced authentication and performance in Productivity Act...
Dev Dives: Master advanced authentication and performance in Productivity Act...Dev Dives: Master advanced authentication and performance in Productivity Act...
Dev Dives: Master advanced authentication and performance in Productivity Act...
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
 
Test Automation with Gen AI_Final_Presentation
Test Automation with Gen AI_Final_PresentationTest Automation with Gen AI_Final_Presentation
Test Automation with Gen AI_Final_Presentation
 
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
Dev Dives: Leverage APIs and Gen AI to power automations for RPA and software...
 

Recently uploaded

Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
anilsa9823
 
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My IdentityCNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
Cynthia Thomas
 
Chapter 1 - Fundamentals of Testing V4.0
Chapter 1 - Fundamentals of Testing V4.0Chapter 1 - Fundamentals of Testing V4.0
Chapter 1 - Fundamentals of Testing V4.0
Neeraj Kumar Singh
 
Getting Started Using the National Research Platform
Getting Started Using the National Research PlatformGetting Started Using the National Research Platform
Getting Started Using the National Research Platform
Larry Smarr
 
Cassandra to ScyllaDB: Technical Comparison and the Path to Success
Cassandra to ScyllaDB: Technical Comparison and the Path to SuccessCassandra to ScyllaDB: Technical Comparison and the Path to Success
Cassandra to ScyllaDB: Technical Comparison and the Path to Success
ScyllaDB
 
Introduction to ThousandEyes AMER Webinar
Introduction  to ThousandEyes AMER WebinarIntroduction  to ThousandEyes AMER Webinar
Introduction to ThousandEyes AMER Webinar
ThousandEyes
 
Product Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdfProduct Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdf
gaydlc2513
 
Multivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back againMultivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back again
Kieran Kunhya
 
Chapter 2 - Testing Throughout SDLC V4.0
Chapter 2 - Testing Throughout SDLC V4.0Chapter 2 - Testing Throughout SDLC V4.0
Chapter 2 - Testing Throughout SDLC V4.0
Neeraj Kumar Singh
 
Database Management Myths for Developers
Database Management Myths for DevelopersDatabase Management Myths for Developers
Database Management Myths for Developers
John Sterrett
 
Brightwell ILC Futures workshop David Sinclair presentation
Brightwell ILC Futures workshop David Sinclair presentationBrightwell ILC Futures workshop David Sinclair presentation
Brightwell ILC Futures workshop David Sinclair presentation
ILC- UK
 
What is an RPA CoE? Session 4 – CoE Scaling
What is an RPA CoE? Session 4 – CoE ScalingWhat is an RPA CoE? Session 4 – CoE Scaling
What is an RPA CoE? Session 4 – CoE Scaling
DianaGray10
 
Chapter 3 - Static Testing (Review) V4.0
Chapter 3 - Static Testing (Review) V4.0Chapter 3 - Static Testing (Review) V4.0
Chapter 3 - Static Testing (Review) V4.0
Neeraj Kumar Singh
 
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
Edge AI and Vision Alliance
 
Multimodal Retrieval Augmented Generation (RAG) with Milvus
Multimodal Retrieval Augmented Generation (RAG) with MilvusMultimodal Retrieval Augmented Generation (RAG) with Milvus
Multimodal Retrieval Augmented Generation (RAG) with Milvus
Zilliz
 
New ThousandEyes Product Features and Release Highlights: June 2024
New ThousandEyes Product Features and Release Highlights: June 2024New ThousandEyes Product Features and Release Highlights: June 2024
New ThousandEyes Product Features and Release Highlights: June 2024
ThousandEyes
 
ASIMOV: Enterprise RAG at Dialog Axiata PLC
ASIMOV: Enterprise RAG at Dialog Axiata PLCASIMOV: Enterprise RAG at Dialog Axiata PLC
ASIMOV: Enterprise RAG at Dialog Axiata PLC
Zilliz
 
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
dipikamodels1
 
Leading a Tableau User Group - Onboarding deck for new leaders
Leading a Tableau User Group - Onboarding deck for new leadersLeading a Tableau User Group - Onboarding deck for new leaders
Leading a Tableau User Group - Onboarding deck for new leaders
lward7
 
Product Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdfProduct Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdf
gaydlc2513
 

Recently uploaded (20)

Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
Call Girls Chennai ☎️ +91-7426014248 😍 Chennai Call Girl Beauty Girls Chennai...
 
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My IdentityCNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
 
Chapter 1 - Fundamentals of Testing V4.0
Chapter 1 - Fundamentals of Testing V4.0Chapter 1 - Fundamentals of Testing V4.0
Chapter 1 - Fundamentals of Testing V4.0
 
Getting Started Using the National Research Platform
Getting Started Using the National Research PlatformGetting Started Using the National Research Platform
Getting Started Using the National Research Platform
 
Cassandra to ScyllaDB: Technical Comparison and the Path to Success
Cassandra to ScyllaDB: Technical Comparison and the Path to SuccessCassandra to ScyllaDB: Technical Comparison and the Path to Success
Cassandra to ScyllaDB: Technical Comparison and the Path to Success
 
Introduction to ThousandEyes AMER Webinar
Introduction  to ThousandEyes AMER WebinarIntroduction  to ThousandEyes AMER Webinar
Introduction to ThousandEyes AMER Webinar
 
Product Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdfProduct Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdf
 
Multivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back againMultivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back again
 
Chapter 2 - Testing Throughout SDLC V4.0
Chapter 2 - Testing Throughout SDLC V4.0Chapter 2 - Testing Throughout SDLC V4.0
Chapter 2 - Testing Throughout SDLC V4.0
 
Database Management Myths for Developers
Database Management Myths for DevelopersDatabase Management Myths for Developers
Database Management Myths for Developers
 
Brightwell ILC Futures workshop David Sinclair presentation
Brightwell ILC Futures workshop David Sinclair presentationBrightwell ILC Futures workshop David Sinclair presentation
Brightwell ILC Futures workshop David Sinclair presentation
 
What is an RPA CoE? Session 4 – CoE Scaling
What is an RPA CoE? Session 4 – CoE ScalingWhat is an RPA CoE? Session 4 – CoE Scaling
What is an RPA CoE? Session 4 – CoE Scaling
 
Chapter 3 - Static Testing (Review) V4.0
Chapter 3 - Static Testing (Review) V4.0Chapter 3 - Static Testing (Review) V4.0
Chapter 3 - Static Testing (Review) V4.0
 
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
“Efficiency Unleashed: The Next-gen NXP i.MX 95 Applications Processor for Em...
 
Multimodal Retrieval Augmented Generation (RAG) with Milvus
Multimodal Retrieval Augmented Generation (RAG) with MilvusMultimodal Retrieval Augmented Generation (RAG) with Milvus
Multimodal Retrieval Augmented Generation (RAG) with Milvus
 
New ThousandEyes Product Features and Release Highlights: June 2024
New ThousandEyes Product Features and Release Highlights: June 2024New ThousandEyes Product Features and Release Highlights: June 2024
New ThousandEyes Product Features and Release Highlights: June 2024
 
ASIMOV: Enterprise RAG at Dialog Axiata PLC
ASIMOV: Enterprise RAG at Dialog Axiata PLCASIMOV: Enterprise RAG at Dialog Axiata PLC
ASIMOV: Enterprise RAG at Dialog Axiata PLC
 
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
Call Girls Kochi 💯Call Us 🔝 7426014248 🔝 Independent Kochi Escorts Service Av...
 
Leading a Tableau User Group - Onboarding deck for new leaders
Leading a Tableau User Group - Onboarding deck for new leadersLeading a Tableau User Group - Onboarding deck for new leaders
Leading a Tableau User Group - Onboarding deck for new leaders
 
Product Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdfProduct Listing Optimization Presentation - Gay De La Cruz.pdf
Product Listing Optimization Presentation - Gay De La Cruz.pdf
 

Day 4 - Excel Automation and Data Manipulation

  • 1. Introduction to the Excel Automation and Data Manipulation 24.06.2024 Africa Series Day 4 — Kickstart for Automation Student Developers
  • 2. 2 Senior RPA Developer @SterlingBank UiPath MVP 2024 linkedin.com/in/emmanuel-kolawole/ Senior Consultant @dipoleDIAMOND UiPath MVP 2024 linkedin.com/in/afeararomi/ Global Manager, Marketing Community@UiPath linkedin.com/in/crisvidu/ Emmanuel Kolawole Afe Araromi Cristina Vidu Meet Today’s Hosts
  • 3. 3 Meet Today’s Speakers Automation Project Manager @InnGen 2023 UiPath Student Dev Champion linkedin.com/in/moazu-razak/ RPA Developer at Boundaryless Group linkedin.com/in/michael-patrick/ Moazu Razak Michael Patrick RPA Developer at dipoleDIAMOND linkedin.com/in/joseph-osubu/ Joseph Osubu
  • 4. 4 1. Welcome 2. Session Agenda 3. About Excel Automation and Excel Activities 4. About Datatables 5. Data Manipulation and Data Conversion 6. About Strings and String Manipulation 7. QnA 8. Close out Today’s Agenda
  • 5. 5 About Today’s Session • The meetup will not last for more than 1.5 hours • You are encouraged to network and share your LinkedIn in the chat box • We apologize for keeping you on mute till Q&A time • Please use the chat to place questions too between now and Q&A
  • 7. 7 What's Excel automation? Microsoft Excel automation is a technique used to automate repetitive or time- consuming tasks in Microsoft Excel using software tools or coding techniques. Excel automation can be used to automate tasks such as data entry, calculations, and report generation. The automation of Excel can lead to improved accuracy, efficiency, and cost savings. It can also be used to create powerful data visualizations. UiPath.Excel.Activities package provides two ways to interact with Excel workbooks: ● Workbook or File Access Level ● Excel or Excel App Integration
  • 8. 8
  • 9. 9 Excel Automation - What can you automate? • Create report: • Read and write data • Sort data • Data Filters • Pivot tables • Excel formatting • Work with ranges – append, auto fill, add/delete rows/columns, sheet • Check reports for errors: • Delete duplicate data • Data reconciliation • Fill in forms with data from Excel spreadsheets • Extract data from emails and move to desktop/web application • Data extraction and migration • Data Table to Excel, Excel to Data Table
  • 10. 10 How do I use it? • Package: UiPath.Excel.Activities
  • 11. 11 Data Tables One of the most important activities in Studio – DataTable • Maintain Big Data in Data Table variables • Read from excel • Merge data tables • Output to excel • Data processing in loop • Data lookup • Filter • Data Sorting • Remove duplicates
  • 12. 12 Why are DataTables important in Excel automation? • Efficient handling of large amounts of data: When working with large datasets, DataTables allow for more efficient handling of data, including sorting, filtering, and grouping. • Improved data accuracy: DataTables can be used to validate data and ensure accuracy before exporting to Excel, reducing the risk of errors or mistakes. • Better data organization: DataTables can help organize data in a structured format, making it easier to navigate and understand. • Integration with other systems: DataTables can be integrated with other systems or applications, allowing for seamless data transfer and analysis across different platforms.
  • 13. 13 Excel Demo Run-through 1 Open Excel File Read Input File Add a New Column Calculate Estimated Value End Process Update Excel with New sheet containing updated record
  • 14. 14 Excel Demo 2 • Go To https://www.rpasamples.com/opportunities • Use Scrape Data to retrieve the Account list into a DataTable • Use “Write Range” within Excel Application Scope • Add a new column to the table with “Add Column Data” • Loop through the DT and check if qty is over 40 -> add a note • Use “Write Range” again (or write cell if it’s not too long) to update the Excel
  • 16. 16 Data Manipulation with Strings in Studio ▪ Data manipulation is the process through which the data is altered using various operations in order to facilitate its usage ▪ Allows the user to change data from one form to another by concatenating, converting, replacing, extracting, splitting or segregating to make it ready to be used by RPA in workflows Data Manipulation allows us to customize the data in order to be able to generate the desired outcome based on the process needs
  • 17. 17 Concat • Concatenates the string representations of two specified objects • String.Concat(Var1, Var2) Contains • Checks whether a specified substring occurs within a string. • Returns true or false • VarName.Contains(“Test”) Format • Converts an entire expression into a string (and Inserts them into another text) • Reduces complexity and increases readability • String.Format(“{0} is {1}”, VarName1, Varname2) IndexOf • Returns the zero-based index of the first occurrence of a character in a string • Varname.Indexof(“A”) Strings and String Manipulation ● Some of the operations that can be performed on strings are:
  • 18. 18 Methods for String Manipulations Join • Concatenates the elements in a collection and displays them as string • String.Join(“|”, CollectionVariable) Replace • Replaces all the occurrences of a substring in a string • VariableName.Replace(“original”, “replaced”) Split • Splits a string into substrings using a given separator • VariableName.Split(“|”c)(index) Substring • Extracts a substring from a string using the starting index and the length • VariableName.Substring(StartIndex, Length) Strings and String Manipulation
  • 19. 19 Variables ▪ Data of all kinds can be stored in variables, and there are several variable types in Studio that can be classified into three types Variable Types Scalar Characters Booleans Numbers Collections Arrays Lists Strings (a collection of characters) Dictionary Tables Two dimensional structures that hold data indexed by rows and columns
  • 20. 20 Data conversion is the process of converting one type of data to another type. The methods for data conversion include: Simply assigning the data value to the desired data type. In UiPath, explicit assignment is generally used for data conversion • Eg: Integer.parse(“1243”) to convert string to number Assign Convert any datatype to string using the .ToString method. •Eg: the user can convert DateTime datatype to string datatype or number to string and vice versa .ToString Method Stores any kind of data, including text, numbers, dates, and arrays. Automatically converted to other types to perform certain actions. The first element in the expression is used as a guideline for what operation Studio performs GenericValue Variable Data Conversion
  • 21. 21 What is a Regular Expression? Regular Expression (RegEx) is a specific search pattern that can be used to easily match, locate and manage text. However, creating RegEx expressions may be challenging. UiPath Studio contains a RegEx builder that simplifies the creation of regular expressions. Uses of RegEx include: ● Input Validation ● String Parsing ● Data Scraping ● String Manipulation Some business scenarios where RegEx is used include; Extracting phone numbers that start with a certain digit, Collecting all the street names from a bulk text, even if they don't follow a specific pattern - some of them contain "Street", others "Rd." .etc
  • 22. 22 Practice Exercise 1 Extract Email With Regex 1. Start a new project. Add a ‘Sequence’, rename it, and add an annotation. 2. Add a Read Text File activity to the sequence. ◆ Add “Template.txt” in the Filename property field ◆ Create a new variable inside the Output property field and name it InputData. 3. Add a Matches activity the workflow. ◆ Add InputData in the Input property field. ◆ Create a new variable inside the Result property field (use CTRL + K to auto-assign the correct type) and name it FoundEmailMatches. ◆ Click Configure Regular Expression button to configure the regular expression. Select Email as the value for the RegEx property and Exactly 1 as the value for the Quantifiers property. ◆ Set the RegexOption property field value to IgnoreCase. ◆ Click Save.
  • 23. 23 Practice Exercise 1 4. Add a Log Message activity, set its Log Level to Info and add the following message: "New employee IDs will be generated for the following email addresses:". 5. Add a For Each activity. ◆ Add FoundEmailMatches variable in the List of items property field. ◆ Add emailAddress in the items property field. ◆ Add a Log Message activity inside the Body sequence. ● Set the Log Level to Info and add emailAddress.Tostring in the Message property field. 6. Run the project in Debug mode and check the Output Panel.
  • 24. 24 What is a list variable? A list variable in UiPath is a type of variable that can hold a collection or sequence of data items. It allows you to store and manage multiple values of the same data type (such as strings, numbers, or custom objects) within a single variable Unlike arrays, it does not have a fixed number of elements. Lists provide specific methods of manipulation, such as: ● Adding and removing items. ● Searching for an element. ● Looping through the items (and performing certain actions on each). ● Sorting the objects. ● Extracting items and converting them to other data types. How to initialize list variables To initialize a variable is to specify an initial value to assign to it. All variables are given an initial value when they are declared. However, this process differ between value or reference type variables. Data Manipulation with Lists and Dictionaries in Studio
  • 25. 25 a. Value type - For numeric, Boolean, DateTime and other value types, the compiler will give them a valid value if we do not explicitly do so b. Reference type - Reference type variables, like Lists and Dictionaries, initialize to the object we provide. Hence, the compiler will not assign a value if we don't. How to initialize list variables ● The first way was to create a list type of variable. Then, we used a Build Collection activity to add items to the list and specify the list variable to hold the items. ● The second way was to create a list type of variable, then add the items inside the Default value field. Then, initialize the list by typing new List of Type from the specified items. new List(of String) Data Manipulation with Lists and Dictionaries in Studio
  • 26. 26 What is a dictionary variable? Dictionary variables (Dictionary<TKey, TValue>) are collection type of variables of (key, value) pairs, in which the keys are unique. Think of the Address Book in your mobile phone, where each entry has corresponding data (name, phone number(s), email address, etc). The data types for both keys and values have to be chosen when the variable is declared. Data types within dictionaries can be any of the supported variables (String, Int32, etc) including Dictionary<TKey, TValue>. Some business scenarios in which you will most likely encounter dictionaries include Storing configuration details or other information that needs to be accessed throughout a process, Storing the job titles or other relevant information of employees etc. The operations that are most often associated with dictionaries are: ● Adding and deleting (key, value) pairs. VarName.Add(Key, Value) VarName.Remove(Key) ● Retrieving the value associated with a key. VarName.Item(Key) ● Re-assigning new values to existing keys. VarName.Add(Key, Value) Data Manipulation with Lists and Dictionaries in Studio
  • 27. 27 What’s Next? Global Student Developer Chapter https://community.uipath.com/global-student-developer/ Log in to UiPath Academy academy.uipath.com ● Go to the Learning Plans page ● Enrol for the Automation Developer Associate Training course https://bit.ly/4c8mHem ● Take the “Excel Automation with the Modern Experience in Studio” lesson ● Take the “Data Manipulation with Strings in Studio” lesson Session 5: Making your Automation Journey Continuous and Beneficial ● Series Registration Page https://bit.ly/3Vz0G1d
  • 28. 28 Goodbye! But Stay Close… ● community@uipath.com ● www.community.uipath.com Happy Automation!