Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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 (1)
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'