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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

always select the first value in mulitibox field.

Hi,

i am doing small dashboard which loads every week data into qlikview. I am having one field ReportDate in Multibox. if I select the option "Always select one value", the same value will be selected always.

suppose If i select the value 03/12/2012. I checked option "Always select one value".

if i load next week data i.e 09/12/2012. Then i need to select this date instead of old date.

Thanks

Suresh

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Use on document open trigger in the document properties and use select in field action and set the value as MinString(FieldName)

Celambarasan

View solution in original post

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Use on document open trigger in the document properties and use select in field action and set the value as MinString(FieldName)

Celambarasan

eliran
Creator III
Creator III

Just to make clear of Celambarasan's suggestion, in case your intrested in loading the desired date, I would suggest using the triger with Max.

That's because your intrested in taking the last report date.

So in Field insert: ReportDate

and in selection insert:=Max(ReportDate)

Hope it helps,

Eliran.

Not applicable
Author

it's working thanks.