How can i show tips?

How can i show tips before that user enter a new data or when he opens the APP?
thks

0 4 314
4 REPLIES 4

@J_jvs
What kinda tips do you want to show? Regarding the general usage of the app? Can you elaborate?

both, tips about app usage and about issues relationes with my control diet app

@J_jvs
Displaying a tip during an app start is relatively easy. However it wonโ€™t be working as expected, when the user minimizes the app and let it run in the background app drawer. To display a tip in a form when the user is entering a data, is easy too. To achieve that:

  • Create a Tips table with ID, Tip# and Tip columns. Tip# is Number type and the rest is text.
  • Import this table as Read-Only to your app.
  • In the table that the form data belongs, add a Virtual Column with Show type and Text as content type.
  • In the Content property of this column, you can use an expression like this:
ANY(
	SELECT(
		TipsTableName[TipColumn],[Tip#]=RANDBETWEEN(1, MAX(TipsTableName[Tip#]))
	)
)

This expression will display a random tip from the Tips table everytime the user opens that form to enter some data.

Thks a lot Levent Kulacoglu , i did it, and it runs properly.

2X_2_243470fb955f686b8fbb227fbded92bc677c5d21.png

2X_5_505305a84b8c91b12c19c3cdf2743d10d97d69d8.png
Jordi Vilardell Solร 

629573791 | jordivilardellsola@gmail.com

2X_4_4584d569df0b79d7c9f251597610dc96c20dc845.png

Get your own 2X_2_21e766744df69aa23c5a4b68b4ab70f9021c57e9.png email signature

Missatge de Levent Kulacoglu via AppSheet Creator Community appsheet@discoursemail.com del dia dt., 30 de jul. 2019 a les 18:37:

Top Labels in this Space