User Tools

Site Tools


software:microsoft:excel

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

software:microsoft:excel [2016/10/01 01:26] – created superwizardsoftware:microsoft:excel [2018/06/29 19:58] (current) superwizard
Line 1: Line 1:
 +====== How To Quickly Extract Filename From Full Path In Excel ======
 +
 +From: https://www.extendoffice.com/documents/excel/1431-excel-extract-filename-from-full-path.html
 +
 +folder name filename path
 +
 +<code>
 +Function FunctionGetFileName(FullPath As String) As String
 +'Update 20140210
 +Dim splitList As Variant
 +splitList = VBA.Split(FullPath, "\")
 +FunctionGetFileName = splitList(UBound(splitList, 1))
 +End Function
 +</code>
 +
 +
 ====== How to resolve crash and stability issues - OffCAT tool ====== ====== How to resolve crash and stability issues - OffCAT tool ======
  
software/microsoft/excel.1475285208.txt.gz · Last modified: 2016/10/01 01:26 by superwizard