AmritPaulSingh
Programmer
If the VBA code has a very long line, how do i break it in 2 or more lines. I know there is something to do with & _ but am not able to use it.
Thanks
Thanks
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.
_
& _
public function myFun(param1 as string _
param2 as integer) as String
Dim result as String
result = param1 & _
param2
myFun = result
end function