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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Dom87326
Helper II
Helper II

If condition for DATE

Hello, 

 

I am having some difficulty of If condition result.

 

I have two columns:

  • %DATE_KEY int type, which has many non unique rows with dates looking back 5 years, format is always yyyymm&"01".
  • Year End calculated column based on condition to show only year end results (see example below), if year is yyyy&"12"&"01" then %DATE_KEY else is blank.

PBI.JPG

 

Many thanks in advance for any help!

1 ACCEPTED SOLUTION

Ah, OK. Then try the same thing except as a number.

if Number.Mod([%DATE_KEY], 10000) = 1201 then [%DATE_KEY] else null

View solution in original post

3 REPLIES 3
AlexisOlson
Super User
Super User

Try creating a custom column with this:

if Text.End([%DATE_KEY], 4) = "1201" then [%DATE_KEY] else null

 

Hello @AlexisOlson,  

Thanks for Your help, unfortunately %DATE_KEY is integer (number) and it does not work with syntax Text.End. 

 

Ah, OK. Then try the same thing except as a number.

if Number.Mod([%DATE_KEY], 10000) = 1201 then [%DATE_KEY] else null

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors