The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello all,
is there a way to count years continuously from the release date of a product, so that you can compare, for example, the sales development of products not by calendar year, but by the year after the release date?
Thanks in advance for your help.
Solved! Go to Solution.
Hi, @n_braun
As an example, your product was released on June 1.
Column:
Start Of Year =
VAR _eoy = IF(MONTH([Date])<=5,YEAR([Date])-1,YEAR([Date]))
Return
DATE(_eoy,6,1)
Fiscal year = YEAR([Start Of Year])
Is this the result you expect?
Best Regards,
Charlotte Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @n_braun
As an example, your product was released on June 1.
Column:
Start Of Year =
VAR _eoy = IF(MONTH([Date])<=5,YEAR([Date])-1,YEAR([Date]))
Return
DATE(_eoy,6,1)
Fiscal year = YEAR([Start Of Year])
Is this the result you expect?
Best Regards,
Charlotte Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
12 | |
12 | |
12 | |
6 |