This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I want to create a Dynamic title based on the month that am selecting. Condetions are below
1 If am selecting All Months then it should show "MTD".
2 If am selecting multiple month's then it should show "Multiple Month's".
3 If am selecting only one month then it should show "MTD".
Solved! Go to Solution.
@unnijoy I think I forgot to close ) before =1
SWITCH(TRUE(),
NOT(ISFILTERED('Month DB'[Month])),"MTD",
ISFILTERED('Month DB'[Month])&&CALCULATE(DISTINCTCOUNT('Month DB'[Month]),ALLSELECTED('Month DB'[Month]))=1,"MTD","Multiple Month's")
@unnijoy , Create measure like
Switch ( True() ,
not(isfiltered(Date[Month]) ) , "MTD",
isfiltered(Date[Month]) && countx(allselected(Date), Date[month]) =1, "MTD",
"Multiple Months"
)
Hi @amitchandak ,
If all months are seleced the title is changing to MTD. But if i select any one month it is changin to "Multiple Months".
How to fix it. Please help.
@unnijoy , I think for all month you needed MTD, First condition is for that. I changed the second one
Switch ( True() ,
not(isfiltered(Date[Month]) ) , "MTD", // Change this when nothing is selected or all selected
isfiltered(Date[Month]) && calculate(distinctCOUNT( Date[month]),allselected(Date)) =1, "MTD",
"Multiple Months"
)
Hi @amitchandak ,
the is how i use the code.
I am gettin the below error.
"The True/False expressions does not specify a column . Each True/False expressions used as a table filter expression must refer to excatly one column".
@unnijoy I think I forgot to close ) before =1
SWITCH(TRUE(),
NOT(ISFILTERED('Month DB'[Month])),"MTD",
ISFILTERED('Month DB'[Month])&&CALCULATE(DISTINCTCOUNT('Month DB'[Month]),ALLSELECTED('Month DB'[Month]))=1,"MTD","Multiple Month's")
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 65 | |
| 41 | |
| 28 | |
| 22 | |
| 22 |