Forum Discussion
sam_hoccane
Helper I
3 years agoDynamic Fiscal Year
Hello Community, Woould you please help me to determine how to create column that can Identify Current fiscal Quater. I have tried with this formula but it is not working. ( I am donot have dat...
- 3 years ago
They've also recently released custom templates:
https://www.sqlbi.com/articles/customizing-date-and-time-intelligence-templates-in-bravo-for-power-bi/sam_hoccane, I'd strongly recommend using a date table.
https://radacad.com/do-you-need-a-date-dimensionOne way to define your fiscal quarter:
ROUNDDOWN ( MOD ( MONTH ( [Date] ) + 1 , 12 ) / 3, 0 ) + 1
ppm1
Solution Sage
3 years agoDefinitely agree on adding a Date table. Either way, you can easily create your FQ column with an expression like this:
FQ = "Q" & QUARTER(EOMONTH(Table[DueDate], 2))
Replace Table[DueDate] with your actual Table[Column]
Pat
AlexisOlson
Super User
3 years agoNice! Much cleaner than what I proposed.