How to list all opening (currently running) applications in Excel?
Actually, you can list all opening applications which only display when pressing the Alt + Tab keys in your computer in Excel with running VBA code. Method in the article can help you.
List all opening (currently running) applications with VBA code
List all opening (currently running) applications with VBA code
Please do as follows to list all opening applications in Excel.
1. In an Excel workbook, please press the Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.
2. In the Microsoft Visual Basic for Applications window, press Insert > Module. Then copy and paste VBA code into the Code window. See screenshot:
VBA code: List all opening applications in Excel
Private Declare PtrSafe Function apiGetClassName Lib "user32" Alias _ "GetClassNameA" (ByVal Hwnd As Long, _ ByVal lpClassname As String, _ ByVal nMaxCount As Long) As Long Private Declare PtrSafe Function apiGetDesktopWindow Lib "user32" Alias _ "GetDesktopWindow" () As Long Private Declare PtrSafe Function apiGetWindow Lib "user32" Alias _ "GetWindow" (ByVal Hwnd As Long, _ ByVal wCmd As Long) As Long Private Declare PtrSafe Function apiGetWindowLong Lib "user32" Alias _ "GetWindowLongA" (ByVal Hwnd As Long, ByVal _ nIndex As Long) As Long Private Declare PtrSafe Function apiGetWindowText Lib "user32" Alias _ "GetWindowTextA" (ByVal Hwnd As Long, ByVal _ lpString As String, ByVal aint As Long) As Long Private Const mcGWCHILD = 5 Private Const mcGWHWNDNEXT = 2 Private Const mcGWLSTYLE = (-16) Private Const mcWSVISIBLE = &H10000000 Private Const mconMAXLEN = 255 Sub ListName() Dim xRg As Range Dim xStr As String Dim xStrLen As Long Dim xHandle As Long Dim xHandleStr As String Dim xHandleLen As Long, xHandleStyle As Long On Error Resume Next Set xRg = Application.InputBox("Please select a range(single cell):", "KuTools For Excel", ActiveWindow.RangeSelection.Address, , , , , 8) If xRg Is Nothing Then Exit Sub xRg(1).Activate xHandle = apiGetWindow(apiGetDesktopWindow(), mcGWCHILD) Do While xHandle <> 0 xStr = String$(mconMAXLEN - 1, 0) xStrLen = apiGetWindowText(xHandle, xStr, mconMAXLEN) If xStrLen > 0 Then xStr = Left$(xStr, xStrLen) xHandleStyle = apiGetWindowLong(xHandle, mcGWLSTYLE) If xHandleStyle And mcWSVISIBLE Then ActiveCell.Value = xStr ActiveCell.Offset(1, 0).Activate End If End If xHandle = apiGetWindow(xHandle, mcGWHWNDNEXT) Loop End Sub
3. Press the F5 key to run the code. In the popping up Kutools for Excel dialog box, please select a cell which you want to list all running applications in, and then click the OK button. See screenshot:
Now all opening applications are listed in the selected column immediately as below screenshot shown.
Related articles:
- How to list all matched instances of a value in Excel?
- How to list all days as date in a specified month in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
