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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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