Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am hoping this a simple one that I am over thinking...
I have a report that makes use of some dynamic RLS which uses an access table built in to the report that looks like this:
| User_Email | UserName | AgentNum | Company | Region | Access Required |
So what I created a measure that filters the report title to the 'Company' name for a specific user when they log in using the below:
| Company |
| Apple |
| Apple - Genius Bar |
In this scenrio they would want to see 'Apple' at the top. Anybody able to help?
Solved! Go to Solution.
Hi @Anonymous ,
We can try to meet your requirement use following formula:
Page_Title =
VAR t =
FILTER ( Access_Table, [User_Email] = USERPRINCIPALNAME () )
VAR CompanyNumber =
COUNTROWS ( t )
RETURN
IF (
CompanyNumber = 0,
"",
IF (
CompanyNumber = 1,
MAXX ( t, [Company] ),
MAXX ( TOPN ( 1, t, [Company], ASC ), [Company] )
)
)
Or
Page_Title =
VAR t =
FILTER ( Access_Table, [User_Email] = USERPRINCIPALNAME () )
VAR CompanyNumber =
COUNTROWS ( t )
RETURN
IF ( CompanyNumber = 0, "", MAXX ( TOPN ( 1, t, [Company], ASC ), [Company] ) )
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
We can try to meet your requirement use following formula:
Page_Title =
VAR t =
FILTER ( Access_Table, [User_Email] = USERPRINCIPALNAME () )
VAR CompanyNumber =
COUNTROWS ( t )
RETURN
IF (
CompanyNumber = 0,
"",
IF (
CompanyNumber = 1,
MAXX ( t, [Company] ),
MAXX ( TOPN ( 1, t, [Company], ASC ), [Company] )
)
)
Or
Page_Title =
VAR t =
FILTER ( Access_Table, [User_Email] = USERPRINCIPALNAME () )
VAR CompanyNumber =
COUNTROWS ( t )
RETURN
IF ( CompanyNumber = 0, "", MAXX ( TOPN ( 1, t, [Company], ASC ), [Company] ) )
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 77 | |
| 41 | |
| 26 | |
| 25 |