Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
chrisg
Partner - Creator III
Partner - Creator III

Error in expression! Can't see my mistake

Hi,

I try to run this line:

IF (FileName() = $(vFileString), 'OK', 'Error in FileName') AS MSG,

but i get an error that a ')' is expected

Thx

Chris

Do or Do Not. There is no try!
1 Solution

Accepted Solutions
biester
Specialist
Specialist

Try with

IF (FileName() = '$(vFileString)', 'OK', 'Error in FileName') AS MSG

Rgds,
Joachim

View solution in original post

2 Replies
biester
Specialist
Specialist

Try with

IF (FileName() = '$(vFileString)', 'OK', 'Error in FileName') AS MSG

Rgds,
Joachim

chrisg
Partner - Creator III
Partner - Creator III
Author

many thx!

Do or Do Not. There is no try!