Power Automate Office Scripts Basics: Difference between revisions

From Training Material
Jump to navigation Jump to search
mNo edit summary
Line 35: Line 35:
** similar to GoogleDocs App Scripts, but based on '''TypeScript''' instead of ''Javascript''  
** similar to GoogleDocs App Scripts, but based on '''TypeScript''' instead of ''Javascript''  
** '''TS''' is a '''subset''' of ''JS'', so we can use JS as well
** '''TS''' is a '''subset''' of ''JS'', so we can use JS as well
* More here
** <small>https://learn.microsoft.com/en-us/office/dev/scripts/overview/excel</small>


== Accessing Scripts ==
== Accessing Scripts ==

Revision as of 21:10, 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

// 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