How to delete excel sheet from work book
Hello.
Hey!
By using delete sheet activity you can achieve this:
This can be done only on Modern Design experience
if you wants to delete multiple sheets…
You can do this by using Invoke VBA
Sub DeleteMultipleSheet()
Dim sheetNames() As Variant
sheetNames = Array("Sheet1","Sheet2","Sheet3","Sheet4")
Sheets(sheetNames).Delete
End Sub
Try this and let me know
Regards,
NaNi