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
Jo5hua22
Helper I
Helper I

Comparing Dates in Measure

Hi Users,

 

I am stuck with comparing dates in a Measure variable. Can you please help me out?

 

Scenario:

I need to compare the Month(Today()) with the month in column value. If both Months are same, then I need to perform a calculation. 

Example:

VAR X1 = If (Month(Today())==Month(Table[Date]),"1","0")

 

Can you please help me?

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Jo5hua22 ,

Here are the steps you can follow:

1. Create measure.

Measure =
IF(
    MONTH(MAX('Table'[Date]))=MONTH(TODAY()),1,0)

2. Result:

The month of each date data is compared to today's month.

vyangliumsft_0-1643079386547.png

 

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

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @Jo5hua22 ,

Here are the steps you can follow:

1. Create measure.

Measure =
IF(
    MONTH(MAX('Table'[Date]))=MONTH(TODAY()),1,0)

2. Result:

The month of each date data is compared to today's month.

vyangliumsft_0-1643079386547.png

 

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

amitchandak
Super User
Super User

@Jo5hua22 , You can have it like this

 

If (eomonth(Today(),0)=eoMonth(Table[Date],0),"1","0")

 

This is more for column then measure 

 

for measure you might need

If (eomonth(Today(),0)=eoMonth(max(Table[Date]),0),"1","0")

Thanks sir

 

The statement "eoMonth(max(Table[Date]),0)," is showing different value that is 31/12/2022.

eomonth(Today(),0) shows the value of 31/01/2022. I would like to compare each month's value with the column value in Table[Date]

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.