CurrentUserEmail
EAZYBI Returns the email of the user viewing the report. Works only on eazyBI for Jira Data Center.
Syntax
CurrentUserEmail()
Arguments
No arguments
Examples
Assets needing attention by current owner
If you track asset status and have specified the asset owner by email, you can use a formula like this to find assets owned by the current user that need attention (e.g., "Needs Maintenance" or "Expired Warranty"):
Count(
Filter(
[Assets].[Asset].Members,
CoalesceEmpty(
[Assets].CurrentHierarchyMember.Get('Owner Email'),
''
) = CurrentUserEmail()
AND
[Measures].[Asset Status] MATCHES 'Needs Maintenance|Expired Warranty'
)
)
See also
- Function CurrentUser returns the key value of the user viewing the report.
- Function CurrentUserName returns the display name of the user viewing the report.