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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
prma7799
Master III
Master III

how to create front end field in Scripting

Hi All,

I want to create one field in back end(scripting).

using below  expression i want to create one field in back end

=aggr(if( rank(( ( sum({$<FiscalYear={$(=max(FiscalYear))}>}[Sales]))  /100000),4)<=20,Brand), Brand)


Can anyone help me out.


Thanks

Labels (1)
2 Replies
petter
Partner - Champion III
Partner - Champion III

In the Load Script:



LET vSales = 'aggr(if( rank(( ( sum({$<FiscalYear={$' & '(=max(FiscalYear))}>}[Sales]))  /100000),4)<=20,Brand), Brand)';



In an expression in the UI:


$(vSales)

prma7799
Master III
Master III
Author

Hi petter.skjolden,

Is this variable will work into nprinting,i want one field (top 20) for creating excel reports in Nprinting.

Thanks