The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Everyone,
Can you help me create DAX for below table? I was trying to get the result yearly. So let say the support date of Product A is Jan 3, 2019, the result will be 2019 because the support date falls within the FiscalYear 2019. I will appreciate all your help!
Thanks!
Solved! Go to Solution.
Hi @JB17 ,
I suggest you to try code as below to create a calculated column.
Result =
YEAR ( EOMONTH ( 'Table'[Support Date], 2 ) + 1 )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JB17 ,
I suggest you to try code as below to create a calculated column.
Result =
YEAR ( EOMONTH ( 'Table'[Support Date], 2 ) + 1 )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |