0% found this document useful (0 votes)
55 views6 pages

How To Use The Project Notebook

The Project Notebook in Excel allows you to add formulas for data manipulation and calculations. It can be used to input data, add formulas to manipulate the data, and output the results to other activities. While the Project Notebook is for temporary calculations, the Use Excel File activity can save results to an Excel file on your system. The document then provides examples of formulas for common operations on dates, text, numbers, and file paths.

Uploaded by

Stiven Arias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views6 pages

How To Use The Project Notebook

The Project Notebook in Excel allows you to add formulas for data manipulation and calculations. It can be used to input data, add formulas to manipulate the data, and output the results to other activities. While the Project Notebook is for temporary calculations, the Use Excel File activity can save results to an Excel file on your system. The document then provides examples of formulas for common operations on dates, text, numbers, and file paths.

Uploaded by

Stiven Arias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Project Notebook

Your Project Notebook is intended to use Excel formulas for data manipulation and calculations
have the freedom to do anything you can do in Excel.

How to use the Project Notebook


- Add a "Write Cell" activity to put the data you want to manipulate using an Excel formula into the "input cell" for your for
- Use the cell containining the formula directly in another activity to get the value produced by your formula.

How to save data


- The Project Notebook is intended for manipulating data when your automation is running. It is not intended as a place to
- To save data to an Excel file:
- Add a "Use Excel File" activity and choose your target Excel file.
- If you indicate a file name that doesn't exist, it will be created when you run your project.
Date Operations
Formulas for working with dates

Date (input) 6/9/2020

Days 7
Date plus a number of days 6/16/2020
Date plus a number of working days 6/18/2020
Date Format (YYYYMMDD) 20200609

Today 6/9/2020
Last week's dates (Monday, Friday, Sunday) 6/1/2020 6/5/2020 6/7/2020
Last month's dates (First and Last) 5/1/2020 5/31/2020
First / Last business day this month 6/1/2020 6/30/2020

Converts text to a date, in a locale-independent way


Inputs
Text 2008年12月31日 (水)
Separator 年 月 日
Format YMD
Calculated Values
1st token 2008 12月31日 (水) 12月31
2nd token 12
3rd token 31
Extracted Year 2008
Extracted Month 12
Extracted Day 31
Output
Reformatted Date 12/31/2008
Text Operations
Formulas for working with text

Text (input) John C. Doe Text to the left


Trimmed John C. Doe John
Length 11 John
Upper case JOHN C. DOE
Lower case john c. doe John C.

Search John
Replace Mary
Result Mary C. Doe
Contains? 0

First Name John C.


Last Name Doe
Text to the right Extracted text
Doe C.
C. Doe
Doe #VALUE!
Doe
#VALUE!
Number Operations
Formulas for working with numbers

Number (input) 3.141593


Cleaned Up 3.141593
Int 3
2 decimals 3.14

Converts text to a number, in a locale-independent way


Inputs
Text 123.456,78
Decimal Separator ,
Group Separator .
Output
Reformatted Number 123,456.78
File System Helpers
Formulas for working with file names and paths

Splits a full file name to get its folder and extension


Input
File name C:\temp\Untitled Document.docx
Output
File name Untitled Document.docx
File extension docx
File name no extension Untitled Document
Folder C:\temp\

Reformatted File Name: Untitled Document.docx

You might also like