Getting 'error expected end of statements' in qlikview macro

142 Views Asked by At
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.

2

There are 2 best solutions below

1
On

your function should look like below. However this function will always return 0 as x and y are initialized by default to 0.

function fAdd() 
 dim x As Integer 
 dim y As Integer 
 fAdd=x+y 
end function
0
On

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