I have a variable varDate that stores a date and time, e.g. "01.01.2022 08:00". I need to show the content of the variable on different labels, sometimes the whole thing and sometimes only the date or the time.
When I set the properties of a label as "DateValue(varDate)", it should show "01.01.2022", and it does - but only if I go into the label's properties, delete and type one of the letters again, like I need to force PowerApps to apply the property and then it works. If I only start the app, the label will be empty, as if it doesn't execute the property by itself.
The same happens with "TimeValue(varDate)" and even just "varDate" - I need to tell it to give me "Text(varDate)" to see the contents in a label.
What am I doing wrong?