How to get the standard deviation.(Power Automate Desktop)

08/07/2023

Japanese version.

Introduction to how to obtain standard deviation in Power Automate Desktop.

Overall view of Flow

Robin(for copy and paste)

It can be copied and pasted into Power Automate Desktop.

SET NumList TO [5, 10, 30, 100]
Excel.LaunchExcel.LaunchUnderExistingProcess Visible: False Instance=> ExcelInstance
SET RowCounter TO 1
LOOP FOREACH CurrentItem IN NumList
    Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: CurrentItem Column: 1 Row: RowCounter
    Variables.IncreaseVariable Value: RowCounter IncrementValue: 1
END
Excel.WriteToExcel.WriteCell Instance: ExcelInstance Value: '=STDEV.P(A1:A' + NumList.Count + ')' Column: 2 Row: 1
Excel.ReadFromExcel.ReadCell Instance: ExcelInstance StartColumn: 2 StartRow: 1 ReadAsText: False CellValue=> ExcelData
Excel.CloseExcel.Close Instance: ExcelInstance

Flow creation steps

Prepare a list of numbers for which you wish to calculate the standard deviation.

This Flow requires a lot of work using Power Automate Desktop alone, so an Excel sheet is utilized.

Set up an Excel Launch Action and create an empty Excel book.

ParameterValue
Launch Excelwith a blank document
Make instance visibleOFF

Create a RowCounter by placing a Set Variable Action and set the initial value to 1.

Loop through List variables with For each.
Specify the List variable as the Value to be iterated.

Set up a Write to Excel worksheet Action in For each.

ParameterValue
Value to write%CurrentItem%
Write modeOn specified cell
Column1
Row%RowCounter%

Set up an Increase variable in For each to count up RowCounter by 1.

Set up a Write to Excel worksheet Action outside of For each

The value to be written is the formula for the STDEV.P function to obtain the standard deviation in Excel.

ParameterValue
Value to write%'=STDEV.P(A1:A' + NumList.Count + ')'%
Write modeOn specified cell
Column2
Row1

Retrieving the result of this formula with Read from Excel worksheet Action will take the standard deviation into the variable.

ParameterValue
RetrieveThe value of a single cell
Start column2
Start row1

Finally, close the book with Close Excel Action. There is essentially no need to save.

When this flow is executed, the standard deviation is stored in the Variables produced in Read from Excel worksheet Action.

As an example, the following results are obtained when running for %[5, 10, 30, 100]%.

For those who want to learn Power Automate Desktop effectively


The information on this site is now available in an easy-to-read e-book format.

Or Kindle Unlimited (unlimited reading).

You willl discover how to about basic operations.

By the end of this book, you will be equipped with the knowledge you need to use Power Automate Desktop to streamline your workflow.

Links

Tips(Power Automate Desktop)