Display date in a warning sentence on screen

0
HI All ,  I have one screen wherein I would like to show the disclaimer sentence containing date (constant as of now ) Could anybody suggest how to display the date ? for instance : “ Please note jobs below do not reflect created before <date>"
asked
2 answers
2

Add a text-widget with caption “Please note jobs below do not reflect created before {1}" and parameter of type expression having this value:

formatDateTime(addDays([%CurrentDateTime%],@yourmodule.yourconstant))

 

answered
2

Option is to add an non-persistent entity with only a date field with a default value of currentdatetime.

Create a microflow that create a record of the non-persistent entity and returns that object

answered