我试图从可执行(.exe)文件中获取Perl脚本(.pl)..exe文件最初是用Perl编写的,但是没有保存.pl文件.有快速的方法吗?我正在使用Strawberry Perl for windows.
谢谢
我仍然是相当新的宏,我有一些代码,我需要在每次更新,更改或其他任何时候在工作表上运行.
这是我需要运行的代码:我该怎么做?
Sub UnMergeFill()
Dim cell As Range, joinedCells As Range
For Each cell In ThisWorkbook.ActiveSheet.UsedRange
If cell.MergeCells Then
Set joinedCells = cell.MergeArea
cell.MergeCells = False
joinedCells.Value = cell.Value
End If
Next
End Sub
Run Code Online (Sandbox Code Playgroud)