Sub HelloWPS() MsgBox "VBA works in WPS!" End Sub To run: .
Getting Started with VBA in WPS Office: A Practical Guide vba wps
Most people think VBA is exclusive to Microsoft Excel. But WPS Office (Spreadsheets & Writer) also supports VBA macros. However, there’s a catch — and a simple fix. Sub HelloWPS() MsgBox "VBA works in WPS
Sub AutoFitAllColumns() Dim ws As Object Set ws = ActiveSheet ws.Columns.AutoFit End Sub vba wps
If a macro runs slower in WPS, add this at the beginning:
Application.ScreenUpdating = False Application.Calculation = xlCalculationManual …and reset at the end.