Power Automate Office Scripts Basics: Difference between revisions

From Training Material
Jump to navigation Jump to search
Line 41: Line 41:
In Excel online (Business version only)  
In Excel online (Business version only)  
* an '''Automate''' tab in the ''ribbon'' bar
* an '''Automate''' tab in the ''ribbon'' bar
* the Ribbon allows to record actions (just like ''vba'')
* the Ribbon allows to '''record''' actions (just like ''vba'')
** ''Create a blank New Script''
** ''Create a blank New Script''
** ''Open existing Scripts''
** ''Open existing Scripts''
Line 47: Line 47:
* The '''record''' function  
* The '''record''' function  
** does not record every action
** does not record every action
** uses selections instead of references
** uses '''selections''' instead of ''references''
** does show good notes and is a good way to learn
** does show good notes and is a good way to learn
<syntaxhighlight lang="ts">
<syntaxhighlight lang="ts">

Revision as of 21:18, 10 December 2024


title
Power Automate Office Scripts Basics
author
Lukasz Sokolowski


Power Automate Office Scripts Basics

Power Automate Office Scripts Basics Training Materials

Introduction

Single module context

  • Accessing Scripts
  • Triggering Scripts in Power Automate
  • IntelliSense
  • Variables, Types and Interfaces
  • Get & Set
  • Basic Excel Actions
  • If
  • Loop
  • Send and Return Data
  • Additional functions

Intro Con't

Office Scripts

Accessing Scripts

In Excel online (Business version only)

  • an Automate tab in the ribbon bar
  • the Ribbon allows to record actions (just like vba)
    • Create a blank New Script
    • Open existing Scripts
    • and Automate a Task with a Power Automate template
  • The record function
    • does not record every action
    • uses selections instead of references
    • does show good notes and is a good way to learn
// comment
let a: string = 'code'

Triggering Scripts in Power Automate

IntelliSense

Variables, Types and Interfaces

Get & Set

Basic Excel Actions

If

Loop

Send and Return Data

Additional functions