Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Smartnag
Frequent Visitor

Current month from year & month (format)

Hi All,

 

I have data like below table.

Source of data - Excel

 

Req -  calculate current year current month of A,B,C 

 

MonthABC
2021-000.2000.9000.650
2022-010.4000.660.23
2022-020.2000.9000.650
2022-030.4000.660.23
2022-040.2000.9000.650
2022-050.4000.660.23
2022-060.2000.9000.650
2022-070.4000.660.23
2022-080.2000.9000.650
2022-090.4000.660.23
2022-100.2000.9000.650
2022-110.4000.660.23
2022-120.4000.660.23
2022-000.4000.660.23

 

Please help me to write dax.

 

Thanks.

1 ACCEPTED SOLUTION
Duia
Resolver II
Resolver II

Hi @Smartnag ,

Here are the steps you can follow:
1. Create measure.

Flag =
var _flag=
VALUE(
LEFT(MAX('Table'[Month]),4))
var _currentyear=
YEAR(TODAY())
return
IF(
_flag=_currentyear,1,0)

2. Set [A], [B], [C] to Sum.

Duia_1-1660042023161.png

3. Place [Flag]in Filters, set is=1, apply filter.

Duia_2-1660042076083.png

4. Result:

Duia_3-1660042081281.png

If you need pbix, please click here.

Current month from year & month (format).pbix

Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Duia
Resolver II
Resolver II

Hi @Smartnag ,

Here are the steps you can follow:
1. Create measure.

Flag =
var _flag=
VALUE(
LEFT(MAX('Table'[Month]),4))
var _currentyear=
YEAR(TODAY())
return
IF(
_flag=_currentyear,1,0)

2. Set [A], [B], [C] to Sum.

Duia_1-1660042023161.png

3. Place [Flag]in Filters, set is=1, apply filter.

Duia_2-1660042076083.png

4. Result:

Duia_3-1660042081281.png

If you need pbix, please click here.

Current month from year & month (format).pbix

Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

lbendlin
Super User
Super User

<checks calendar> yup, normal years still have 12 months, not 13.   What does "2021-00"  mean in your context?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.