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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt2021
Partner - Creator
Partner - Creator

"Row Interaction Behavior"

Hello,

When I select a row, is it possible for it to disappear or to mark it as reviewed after clicking on it?

I Attached a excel simple file for more explanation.

Thanks !!!!

Labels (4)
5 Replies
rubenmarin

Hi, usually you slect what you want to check, to do the opposite maybe you can use this expression:

If(GetSelectedCount(ID)=0
  ,Sum(Monto)
  ,Sum({<ID=E(ID),Fecha,Nombre>} Monto)
)

But this will only work when adding selections to the field

pgalvezt2021
Partner - Creator
Partner - Creator
Author

Hello Thanks for your reply....

"The solution is good, but once I select an option, I want it to stay as 'Reviewed' and not revert to the original state. The items I haven’t reviewed should remain in 'Pending' status. I hope this makes clear what I’m trying to achieve here."

Thanks !!!!

 

rubenmarin

To permanently change a value you can use a variable for each row, which only is a viable option is there are very limited values.

The other option I know is to use a writeback solution, wich changes the value on the source, but that will also need a reload of the app to load the modified values.

Example of writeback: https://www.youtube.com/watch?v=hYER2nGKctM

pgalvezt2021
Partner - Creator
Partner - Creator
Author

Hi,

I will look into the variable approach because here we are not allowed to use extensions.

I’ll see what happens with this.

 

Thanks !!!!

rubenmarin

Ok, just note that the solution on the link not uses any extension, just the objects coming by default in cloud and automations