Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi All,
I want to create a calculated column where I can get Current Fiscal year = True else False and Current fiscal quarter = True else False.
We follow Month end approach so quarter are like below:
Q1 - Feb- Apr
Q2 - May- Jul
Q3 - Aug - Oct
Q4 - Nov-Jan
I have the below columns in my dataset.
Kindly help in computing the calculated columns for my report.
Solved! Go to Solution.
Hi @Himanshu_1306 ,
I updated my sample pbix file(see the attachment), please check if that is what you want.
Current Fiscal Year (Yes/No) =
VAR _year =
YEAR ( TODAY () )
VAR _month =
MONTH ( TODAY () )
VAR _fyear = 'Table'[FISCAL_YEAR]
RETURN
IF (
( _month = 1
&& _year = _fyear)
|| (
_month > 1
&& _year + 1 = _fyear
),
TRUE (),
FALSE ()
)
Current Fiscal Quarter (Yes/No) =
VAR _month =
MONTH ( TODAY () )
VAR _fyear = 'Table'[FISCAL_YEAR]
VAR _fquarter = 'Table'[FISCAL_QUARTER]
RETURN
IF (
( _month = 1
&& 'Table'[FISCAL_QUARTER] = 4 )
|| (
_month > 1
&& QUARTER ( EOMONTH ( TODAY (), -1 ) ) = 'Table'[FISCAL_QUARTER]
),
TRUE (),
FALSE ()
)
Best Regards
Hi @Himanshu_1306 ,
Please try below dax as Calculated Columns
Current Fiscal Year = if(Full_Date=Year(Today()),"True","False")
Current Fiscal Quarter = if(Full_Date=Quarter(Today()),"True","False")
If this post helps, then please consider Accept it as the solution, Appreciate your Kudos!!
Hi Jayee,
These calculations wont work as we follow month end approach for Quarter as stated above.
If I take current quarter based on Date it shows Quarter = 1 but as per the fiscal Quarter we are in Quarter 4 till 31st Jan'2023.
My Quarter Scenarios:
Q1 - Feb- Apr
Q2 - May- Jul
Q3 - Aug - Oct
Q4 - Nov-Jan
Hi @Himanshu_1306 ,
You can create a calculated column as below to get it, please find the details in the attachment.
Current Fiscal year and quarter =
VAR _year =
YEAR ( TODAY () )
VAR _month =
MONTH ( TODAY () )
VAR _fyear = 'Table'[FISCAL_YEAR]
VAR _fquarter = 'Table'[FISCAL_QUARTER]
RETURN
IF (
( _month = 1
&& _year = _fyear
&& 'Table'[FISCAL_QUARTER] = 4 )
|| (
_month > 1
&& _year + 1 = _fyear
&& QUARTER ( EOMONTH ( TODAY (), -1 ) ) = 'Table'[FISCAL_QUARTER]
),
TRUE (),
FALSE ()
)
If the above one can't help you get the expected result, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
Thanks for the response.
I actually want 2 different columns for Current Fiscal year and Fiscal Quarter.
Column 1 : Current Fiscal Year (Yes/No)
Column 2 : Current Quarter (Yes/No)
Hi @Himanshu_1306 ,
I updated my sample pbix file(see the attachment), please check if that is what you want.
Current Fiscal Year (Yes/No) =
VAR _year =
YEAR ( TODAY () )
VAR _month =
MONTH ( TODAY () )
VAR _fyear = 'Table'[FISCAL_YEAR]
RETURN
IF (
( _month = 1
&& _year = _fyear)
|| (
_month > 1
&& _year + 1 = _fyear
),
TRUE (),
FALSE ()
)
Current Fiscal Quarter (Yes/No) =
VAR _month =
MONTH ( TODAY () )
VAR _fyear = 'Table'[FISCAL_YEAR]
VAR _fquarter = 'Table'[FISCAL_QUARTER]
RETURN
IF (
( _month = 1
&& 'Table'[FISCAL_QUARTER] = 4 )
|| (
_month > 1
&& QUARTER ( EOMONTH ( TODAY (), -1 ) ) = 'Table'[FISCAL_QUARTER]
),
TRUE (),
FALSE ()
)
Best Regards
Calculations are working perfectly for current fiscal year and quarter.
Just wanted to know if i'll have to change anything in the calculation for next fiscal quarter as both fiscal quarter and fiscal year will change? from 1st Feb it'll be Fiscal year = 2024 and Quarter = 1 for me
Hi @Himanshu_1306 ,
The formula used the function TODAY(), it will return the current date which you check the report. For example, if you check the report on Feb 1, 2023, the function TODAY() will return the date Feb 1, 2023. And yes, the fiscal year will be 2024 and quarter will be 1... It is not required to change anything for the formula....
Best Regards
Thanks so much for the help !!!
Regards