Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

variable in expression

Hello,

I have defined a variable in variable overviexw like this ::

 

Vstart_date =   Date(AddMonths([Application date],-1), 'MM-DD-YYYY') .
in the expression : i called this variable

 

=$(Vstart_date) .

but it's not working ?

thank you in advance

Regards

3 Replies
sunny_talwar

May be try this:

$(=Vstart_date) or

Vstart_date

sunny_talwar

Look over the definition again, do you have just single [Application date] in your application? If not then you probably would need to use a min or max to aggregate all dates to a single date:

Vstart_date =  Date(AddMonths(Min([Application date]),-1), 'MM-DD-YYYY')

Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

In variable overview window your expression definition should start with = sign