Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

error in variable

Hi all,

i created a sheet that is available only if the value of a variable(called MyValue) is equal to  Apate.

 

using this but getting error

=v$(Password)='QVEMEA'

 

what is my miss here?

 

 

Labels (2)
2 Solutions

Accepted Solutions
Vegar
MVP
MVP

You are not describing you variable and its content in  a way that I understand , but let's assume the output of your Password variable is 'ABC'. Then your expression, =v$(Password)='QVEMEA, will become like this.

=vABC='QVEMEA'

In other words, your field named [vABC] should only have the value 'QVEMEA'. Is this the condition you are trying to create? 

View solution in original post

Chanty4u
MVP
MVP

Try this 

='$(Password)'='QVEMEA'

 

or

='$(vPassword)'='QVEMEA'

View solution in original post

2 Replies
Vegar
MVP
MVP

You are not describing you variable and its content in  a way that I understand , but let's assume the output of your Password variable is 'ABC'. Then your expression, =v$(Password)='QVEMEA, will become like this.

=vABC='QVEMEA'

In other words, your field named [vABC] should only have the value 'QVEMEA'. Is this the condition you are trying to create? 

Chanty4u
MVP
MVP

Try this 

='$(Password)'='QVEMEA'

 

or

='$(vPassword)'='QVEMEA'