In this tutorial,
we are covering advanced excel actions available in power automate desktop
Actions covered are:
- Run Macro
- Add/delete worksheets
- Add/delete columns
- Add/delete rows
- Copy and paste cells
- Select cells in an excel
The macro used in the is given below,
Sub SetMessage()'' SetMessage Macro'' Keyboard Shortcut: Ctrl+Shift+M'Range("D2").SelectActiveCell.FormulaR1C1 = "Success"Selection.AutoFill Destination:=Range("D2:D6")Range("D2:D6").SelectEnd Sub
Comments
Post a Comment