function fAdd() dim x As Integer dim y As Integer fAdd=x+y end function
When I try to run this code, getting error saying 'expected end of statements' with As Integer at the first line being highlighted.
your function should look like below. However this function will always return 0 as x and y are initialized by default to 0.
I don't know qlikview so I can only say that:
your code doesn't throw error in VBA
may be you wanted to code
Function fAdd(x As Integer, y As Integer) fAdd = x + y End Function
where your fAdd() function would accept two arguments (x and y) of Integer type and return their sum
fAdd()
x
y
Integer
Copyright © 2021 Jogjafile Inc.
your function should look like below. However this function will always return 0 as x and y are initialized by default to 0.