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

Use of $(field)

Hello Experts,

I want information on $(filed) , can anyone explain me in detail?

I have one question as well, if i have a formula in text object like this 

if($Field=Country,sum(Sales))  

 

What will be its result?

Labels (1)
2 Replies
sunny_talwar

Read about $Field here System fields. These are basically system generated fields which include information related to the meta data associated with your app. $Field include the name of all the fields in your app.

I think the current syntax would be this if($Field = 'Country', Sum(Sales)). It means that perform sum of sales only when a user has selected Country in $Field list box.