Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.