Standard page, when a tab is empty

Hi!

Is it possible to make a standard page, if the user access a page without any data yet?

Something like the example I’ve attached a picture of:

make if else column that will generate default data, when USC is not entered yet… or is empty (same thing)

1 Like

Make sure you have a column to mark the state of the data being “empty” or not.

Say you have a table of Restaurants and want to show the “It seems a bit empty in here” text when there are no restaurants to show. Create a rollup from the Users table to the Restaurants table, target any column, and count the number of available restaurants. If the rollup returns 0, return the text, else display the list of restaurants.

It gets a bit more complex if you have visibility conditions for each user, but you get the idea.

1 Like