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
Ramakrishna7032
New Member

Power query to find date present between two dates

I have a date field in my table i want to write a power query for new column to find date between two dates. if present it returns true else false 

Ramakrishna7032_0-1662554606489.png

 

1 ACCEPTED SOLUTION
davehus
Memorable Member
Memorable Member

Hi @Ramakrishna7032 ,

 

Add a custom column and see if it works.

if [DateKey]> Date.FromText("01/01/2022") and [DateKey]< Date.FromText("31/01/2022") then 1 else 0

 Hope this helps.

 

Did I help you today? Please accept my solution and hit the Kudos button.

View solution in original post

2 REPLIES 2
davehus
Memorable Member
Memorable Member

Hi @Ramakrishna7032 ,

 

Add a custom column and see if it works.

if [DateKey]> Date.FromText("01/01/2022") and [DateKey]< Date.FromText("31/01/2022") then 1 else 0

 Hope this helps.

 

Did I help you today? Please accept my solution and hit the Kudos button.

Hi @davehus,

Appreciated your solution. I had one more question like can we write a power query to know the term is updated in last 24 hours??

thanks in advance

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.

Top Solution Authors