How can I use the DAX formula by the title
Hiring_TITLE_2_1 =
var seltab = SELECTEDVALUE('Hiring(Overall||Completed||Active)'[Attribute])
var selPosition = SELECTEDVALUE (hiring_proposal[hiring_proposal_type])
return
IF(ISFILTERED(hiring_proposal[hiring_proposal_type]),
"Number of Hiring Proposal by Hiring Proposal Type Workflow ("&selPosition&"-"&seltab&")",
"Number of Hiring Proposal by Hiring Proposal Type")
It's showing another subtitle by a plain text box and wants to hide
Number of Hiring Proposal by Hiring Proposal Type Workflow ("&selPosition&"-"&seltab&")"
How can I do this?