To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 dates table)
Due Date (M/D/Y) | Current Quarter |
01/19/2023 | Q1 |
10/31/2022 | Q1 |
11/22/2022 | Q1 |
12/15/2022 | Q1 |
02/17/2023 | |
07/18/2023 | |
09/18/2023 | |
10/25/2023 | |
11/14/2023 |
Solved! Go to Solution.
They've also recently released custom templates:
https://www.sqlbi.com/articles/customizing-date-and-time-intelligence-templates-in-bravo-for-power-b...
@sam_hoccane, I'd strongly recommend using a date table.
https://radacad.com/do-you-need-a-date-dimension
One way to define your fiscal quarter:
ROUNDDOWN ( MOD ( MONTH ( [Date] ) + 1 , 12 ) / 3, 0 ) + 1
Definitely 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
Nice! Much cleaner than what I proposed.
Hi @sam_hoccane ,
I would recommend using a date table like the one below which you can adjust to fit your fiscal calendar:
https://www.sqlbi.com/articles/reference-date-table-in-dax-and-power-bi/
They've also recently released custom templates:
https://www.sqlbi.com/articles/customizing-date-and-time-intelligence-templates-in-bravo-for-power-b...
@sam_hoccane, I'd strongly recommend using a date table.
https://radacad.com/do-you-need-a-date-dimension
One way to define your fiscal quarter:
ROUNDDOWN ( MOD ( MONTH ( [Date] ) + 1 , 12 ) / 3, 0 ) + 1
Thankyou all!
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |