Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
=FName = Split(f.name, ".")(0)
NoExt=left(f.name,len(f.name)-4)
Function NameSansExtension(sName As String) As String
Dim a, i As Integer
a = Split(sName, ".")
NameSansExtension = a(UBound(a) - 1)
If UBound(a) > 1 Then
For i = UBound(a) - 2 To 0 Step -1
NameSansExtension = a(i) & "." & NameSansExtension
Next
End If
End Function