Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show new data since last logon

Hi there,

we would like to give our users the chance to see all new data since the user opened a qvw the last time.

Should not be complicated at all as we just need to display everything since the last logon.


But is there a chance to get the date of the users last logon to a qvw-file? I can't find anything so far.

thanks a lot and br,

Max

1 Reply
Not applicable
Author

Hi max,

    

     You can add a new field in each table to save the load date,

     LOAD A,

                B,

                C,

                if(isnull(LoadDate),now(),LoadDate)

     FORM

               .....

I hope to help you.