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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Info requested on expression and parameter override at object or table level

Hi All,

need your help to resolve below issue

variable defined


vft=placeholder
eSumAmt=Sum({$<$(vft)>} AMT)
TT='[A Date]={">=$(vMonthStart) <=$(A Date)"}'

want to override at object level
vft=$(TT)

Wants to calculate
($($(='eSumAmt'),$(TT)  ) )

Current issue
getting out put as null, it seems there is issue with to calculate syntax

1 Reply
marcus_sommer

I think it should be look more like this:

eSumAmt=Sum({$<$1>} AMT)

TT=[A Date]={">=$(vMonthStart)<=$(A Date)"}

$(eSumAmt($(TT)))

- Marcus