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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
TeamCanada26__
Frequent Visitor

Power Query Formula with IF and END.OF.MONTH

I am looking to add a new column with a bit of equations in it.

 

This is what I am hoping to achieve in language:

 

IF Job Requistion Status = "Closed" then use the EndOfMonth of the End date

IF Job Requisition Status = "Filled" and End Date is null then EndOfMonth  of the Requisition Close Date

Else EndofMonth on todays date.

 

Any help appreciated.

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use this

= if [Job Requistion Status]="Closed" then Date.EndOfMonth([End Date]) else
if [Job Requistion Status]="Filled" and [End Date]=null then Date.EndOfMonth([Requisition Close Date]) else Date.EndOfMonth(Date.From(DateTime.FixedLocalNow()))

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

Use this

= if [Job Requistion Status]="Closed" then Date.EndOfMonth([End Date]) else
if [Job Requistion Status]="Filled" and [End Date]=null then Date.EndOfMonth([Requisition Close Date]) else Date.EndOfMonth(Date.From(DateTime.FixedLocalNow()))

Thank you!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

Top Solution Authors
Top Kudoed Authors