Deck View to Go Directly to Detail View Only When Populated

Howdy,
I have a table called PROFILE which is set up as a DECK VIEW in the menu bar.
Once the user creates a PROFILE, I’d like for the DECK VIEW to disappear and go directly to the DETAIL VIEW once the user clicks PROFILE from the menu.

The DECK VIEW serves no purposes anymore once the profile is created. It’s just another view in which the user has to click on their box which then takes them to the DETAIL view. A two step process. I wonder if it’s possible to cut it down to one?

Is there a way to set up the SHOW IF condition in the PROFILE DECK VIEW which says basically that IF profile is created, then show the PROFILE DETAIL VIEW, else, show the DECK VIEW.

I have the formulation below to determine if the profile is created:

ISBLANK(SELECT(PROFILE[EMAIL], [EMAIL]=USEREMAIL() ) )

Thanks!

Solved Solved
0 4 204
1 ACCEPTED SOLUTION

@Steve, @LeventK
You guys are awesome! I figured out the solution with your help.

You have create TWO views from the SAME Table to achieve this.

MY PROFILE 1 (Display as “MY PROFILE”) and set it as the DECK VIEW.
SHOW IF: ISBLANK(SELECT(PROFILE[EMAIL], [EMAIL]=USEREMAIL() ) )
MY PROFILE 2 (Display as “MY PROFILE”) and set it as the DETAIL VIEW.
SHOW IF: ISNOTBLANK(SELECT(PROFILE[EMAIL], [EMAIL]=USEREMAIL() ) )

It will look something like this when you’re setting it up; however, once the SHOW IF expressions are included you will only see one view for either scenario.

3X_f_f_fff84c3a696224031a80cadf6ff12264d7a9e86a.png

Thanks guys!

View solution in original post

4 REPLIES 4
Top Labels in this Space