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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I created a titles Measure that references Calculation Groups "Scenario". When I change to the "Budget" member of the Calculation Group it defaults Company Names to "All Entities" instead of the selected company name. A video is below and the code is below. Any ideas on how to resolve?
Title Front Page =
VAR _EntityCIK = SELECTEDVALUE ('Entity'[Company Names], "All Entities" )
VAR _Scenario = SELECTEDVALUE ( Scenario[Scenario], "All Scenarios" )
VAR _NewLine = UNICHAR ( 10 )
VAR _TitleReports =
CONCATENATE (
CONCATENATE (
CONCATENATE ( _EntityCIK,
REPT(_NewLine,1)),
_NewLine),
_Scenario)
RETURN
_TitleReports
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.