I need output in the below format in excel, how to perform using Power Automate desktop
I need output in the below format in excel, how to perform using Power Automate desktop
Hi,
Power Automate for desktop does not provide a dedicated action for merging cells.
For stable processing, I recommend using a script only for the cell merging part as shown below.
With GetObject("C:\hoge\hoge.xlsx").Application
.DisplayAlerts = False
.CommandBars.ExecuteMso "MergeCells"
.DisplayAlerts = True
End With
or
With GetObject(, "Excel.Application").Application
.DisplayAlerts = False
.CommandBars.ExecuteMso "MergeCells"
.DisplayAlerts = True
End With
Regards,
kinuasa
WarrenBelz
146,670
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,004
Most Valuable Professional