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 ConcatCells(ByVal oRange As Range) As String
Dim oCell As Range
Dim sResult As String
sResult = ""
For Each oCell In oRange
sResult = sResult & oCell.Text
Next oCell
ConcatCells = sResult
End Function
Function ConcatValues(rng as range) as string
Dim r as range
for each r in rng
ConcatValues = ConcatValues & r.value
next
End Function