Dynamic Titles Issues

weaselmcguff

Board Regular
Joined
Feb 24, 2006
Messages
246
I am trying to create a Dynamic Title and coming up with errors.

My field has 2 different values

Conversion
Install

Here is my DAX Formula:

Title Combined = if(
ISFILTERED('Current'[Install Type]),
"Selected Type is " & CONCATENATEX('Current','Current'[Install Type],", "),
"Nothing Has Been Selected")


I get no errors, But when i select 1 or 2 of the values i get
Select Type is Install, Install, Install, Install, Install, Install, Install, Install, Install, Install,

It just keeps going even if i select Conversion first then i select Install i get the same as above.
If I only select Conversion it gives my Conversion in place of Install.

I want it to show
Selected Type is Conversion
Selected Type is Install
Selected Type is Install, Conversion

What am i doing wrong?

Thanks for your assistance
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Finally got it to work here is the finished code:

Title Combined =
"The Following has been selected " &
CONCATENATEX(
VALUES('Current'[Install Type]),
'Current'[Install Type],
" and "
)

Thanks for the guidance
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,254
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top