Skip to main content
Newcomer
April 5, 2023

Dashboard Prompt to appear only for users who access it the first time

  • April 5, 2023
  • 1 reply
  • 0 views

Hi,

Is there a way to show a prompt for a dashboard ONLY during the first time the user opens the particular dashboard? User will provide some POV and this should be saved to be used by the dashboard everytime the user opens it.

 

I am thinking of creating a custom table on the database that gets populated with the username, and the POVs that the user chose. 

 

It would be best if I can make use of the dashboard parameters prompt, and just create a rule to (1) check if the user has an entry on the custom table, (2) do not show the parameters prompt if the user has entry.

 

Thanks!

 

Thanks!

1 reply

RobbSalzmann
Legend
April 5, 2023

A custom DB table [username][povstring] and a dedicated Parameter is the way I would go.  Do the lookup

select COALESCE(povstring, "") as povstring where username={si.UserName}

when launching the dashboard where the POV gets used.