Forum Discussion
abap32
8 years agoFrequent Visitor
Display Slicer value dynamically on card
I have a Month slicer and i want to display the Month name of the selected number ( 8 = August) on a card. I am using the following measure: dynamic_text_last = "Sum of January until ...
- 8 years ago
Hi abap32,
Based on my test, the formula below should work in your scenario. :smileyhappy:
dynamic_text_last = "Sum of January until " & FORMAT ( DATE ( 1900, MAX ( Month_Table[Column_Month_Number] ), 1 ), "mmmm" )Regards