Reputation: 11
So, I have a line graph with the title: "MTTR OOS FIOPTICS MONTHLY TRENDING". Now, I have three filters I am using:
I have the below code used for my Dynamic Title which is only pulling from number 2 CO/CR
Chart Title Fioptics = IF(
ISFILTERED( MTTR[comp_offer_cust_req] ),
CONCATENATEX(
VALUES( MTTR[comp_offer_cust_req] ),
MTTR[comp_offer_cust_req],
", ",
MTTR[comp_offer_cust_req], ASC
),
"MTTR OOS FIOPTICS MONTHLY TRENDING")
So, when no filter is selected my title just says "MTTR OOS FIOPTICS MONTHLY TRENDING". But once I click on the filter for CO/CR it changes it to say only CO or only CR. Is there a way to have the original title stay after selecting a filter choice and also adding two filters into the title?
So, for example if they pick CR & Bus the title would be something like "BUS CR MTTR OOS Fioptics Monthly Trending". instead of "CR" or "BUS"
Upvotes: 0
Views: 54
Reputation: 9062
Sounds like you could use simply:
Chart Title Fioptics =
CONCATENATEX(
VALUES( MTTR[comp_offer_cust_req] ),
MTTR[comp_offer_cust_req],
" ",
MTTR[comp_offer_cust_req], ASC
) & " MTTR OOS FIOPTICS MONTHLY TRENDING"
Upvotes: 0