Forum Discussion
Anonymous
3 years agoNot applicable
Dynamic Title
Hi All, I'm trying to create a dynamic title for my card like below but facing issues. At the moment I've manually used the title but want it to be dynamic. Any help in creating the ...
- Anonymous3 years ago
Thanks for the help.
I actually created few measures and got the desired result.
CurrentFY = CALCULATE( SELECTEDVALUE( D_DATE[FISCAL_YEAR] ),FILTER( ALL( D_DATE ), D_DATE[Date] = TODAY() ) )Last quarter = ROUNDUP(MONTH(TODAY())/3, 0)-1Result :
Anonymous
3 years agoNot applicable
Getting the below error
Anonymous
3 years agoNot applicable
Jo ALso the max value will give the max result in my dataset. I want the current fiscal year and last quarter in my card.
Last quarter I can derive from the below calculation:
D_DATE[CALENDAR_QUARTER] = MAX(D_DATE[CALENDAR_QUARTER])-1)
- JorgePinho3 years agoSolution Sage
I thought you wanted to make it dynamic according to a slicer. If you used a slicer it would display the selected value on the slicer.
If you want to do it according to the system date you have to do a Lookup of the fiscal year using MONTH(TODAY()) and YEAR(TODAY())
- Anonymous3 years agoNot applicable
Thanks for the help.
I actually created few measures and got the desired result.
CurrentFY = CALCULATE( SELECTEDVALUE( D_DATE[FISCAL_YEAR] ),FILTER( ALL( D_DATE ), D_DATE[Date] = TODAY() ) )Last quarter = ROUNDUP(MONTH(TODAY())/3, 0)-1Result :