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.
Function GetReportTitle()
dim strReportTitle as string
strReportTitle = ""
{Loop thru ItemsSelected building the string}
GetReportTitle = strReportTitle
Function GetReportTitle() as String
Dim strReportTitle As String
Dim lbo As ListBox
strReportTitle = ""
Set lbo = Forms!frmPrint![ListLocation)]
For Each item In lbo.ItemsSelected
strReportTitle = strReportTitle & " - " & lbo.ItemData(item)
Next
If Len(strReportTitle) > 0 Then
GetReportTitle = Mid(strReportTitle,4)
End If
End Function