Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

EmpId Increment

Hi All,

Have a nice day.

Capture.PNG

When i click the NEXT button the EmpId  will increment by +1   (302)

When i click the PREVIOUS button the EmpId  will decrement by -1   (300)



Is it possible?  if yes , Please Gide me.




1 Solution

Accepted Solutions
avinashelite

Yes, Its possible . Try like this add action in both the buttons

Previous:

Add action>Select in Field

Field name : [Emp Id]

Expression: getfieldselection([Emp Id])-1

NEXT:

Add action>Select in Field

Field name : [Emp Id]

Expression: getfieldselection([Emp Id])+1

View solution in original post

8 Replies
sunny_talwar

May be you can derive insights from here:

Paging Implementation for Straight table

avinashelite

Yes, Its possible . Try like this add action in both the buttons

Previous:

Add action>Select in Field

Field name : [Emp Id]

Expression: getfieldselection([Emp Id])-1

NEXT:

Add action>Select in Field

Field name : [Emp Id]

Expression: getfieldselection([Emp Id])+1

Digvijay_Singh

One click is required for both clicking button or clicking the value directly, any specific reason you need this functionality   on a lighter note, may be client is forcing to match new BI application with legacy application.

susovan
Partner - Specialist
Partner - Specialist

Try this attachment,

Warm Regards,
Susovan
Not applicable
Author

Thank for quick reply.

But i am using desktop version , i have no license

Not applicable
Author

Hi Susovan Ghosh ,

Thank you for reply ,Could you please provide Expressions. i am using desktop version(No license),

Not applicable
Author

Thank you Avinash .

Its working.

susovan
Partner - Specialist
Partner - Specialist

Hi Ramu,

Try this following expression

For Next button : =if(Filed='300' or Filed<'350',Filed+1,'300')

For Previous button : set this (Back) trigger

Warm Regards,
Susovan