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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

perform event on selected feild value

hii guys... 🙂

my senerio is...

when i select any field value, appears a confirmation dialog, when i select yes it goes to next sheet, and when i select no , it remain on same sheet.

thanx to all

Regards

Naeem

1 Solution

Accepted Solutions
Not applicable
Author

Hi

Use the following macro:
sub MoveToNextSheet
Msgbox ("Move to next sheet?",VBYesNo,"Confirm with Yes")
if Ret = 6 then
ActiveDocument.NextTab
end if
end sub

Go to Document properties, Triggers and add a trigger that runs the macro "onSelect" for the given field.

/Fredrik



View solution in original post

2 Replies
Not applicable
Author

Hi

Use the following macro:
sub MoveToNextSheet
Msgbox ("Move to next sheet?",VBYesNo,"Confirm with Yes")
if Ret = 6 then
ActiveDocument.NextTab
end if
end sub

Go to Document properties, Triggers and add a trigger that runs the macro "onSelect" for the given field.

/Fredrik



Not applicable
Author

thanx

my friend fredrik .. for helping me ...:)

regards