Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I think I have found a bug.
I have a slicer that will filter a table by a region's code. I have made it so that it will default to the current user's regional membership using RLS, with this measure
Region selected = SELECTEDVALUE('Region'[Code], 'RLS-filtered-table'[Code]).
I then have another measure, which uses this measure to get another column of that row
Selected group =
var selectedRegion = [Region selected]
RETURN CALCULATE(MIN('region'[group]), FILTER('region', 'region'[Code] = selectedRegion))
Without the variable, this measure does not work. Eg. :
Selected group =
RETURN CALCULATE(MIN('region'[group]), FILTER('region', 'region'[Code] = [Region selected]))
Is this expected behaviour?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.