It is often nice to add elements of personalization to reports and dashboards. This recipe provides a way to add some relatively simple personalization that greets the user viewing the report in a mildly intelligent manner by taking into account the current time of the day as well as the identity of the individual viewing the report.
Creating a greeting
Getting ready
Just open Power BI Desktop and you are all set.
How to do it...
To implement this recipe, perform the following steps:
- Create the following measure:
Greeting =
VAR __User = USERNAME()
VAR __Hour ...