Forum Discussion
Anonymous
6 years agoNot applicable
DAX HELP
I want to calculate current Fiscal Year End Date (April - March) Suppose for Today, Fiscal year end date should be 31-03-2021
- 6 years ago
Anonymous
Hi, try with this calculated column:
CurrentEndFiscalYear = IF ( MONTH ( 'Table'[Date] ) <= 3; DATE ( YEAR ( 'Table'[Date] ); 03; 31 ); DATE ( YEAR ( 'Table'[Date] ) + 1; 03; 31 ) )Regards
Victor
Anonymous
6 years agoNot applicable
No sir.
Suppose my report date is today, Then I want to add one more column which contains current fiscal year end date (31-03-2021)
| REPORTDATE | CURRFISCALYEAREND |
| 09-01-2015 | 31-03-2015 |
| 09-05-2015 | 31-03-2016 |
Vvelarde
6 years agoCommunity Champion
Anonymous
Hi, try with this calculated column:
CurrentEndFiscalYear =
IF (
MONTH ( 'Table'[Date] ) <= 3;
DATE ( YEAR ( 'Table'[Date] ); 03; 31 );
DATE ( YEAR ( 'Table'[Date] ) + 1; 03; 31 )
)
Regards
Victor
- Anonymous6 years agoNot applicable
Thanks bro, it worked.