Power Query M equivalent of excel conditional IFS formula for a conditional column

indrajeet_rajput

New Member
Joined
Sep 7, 2024
Messages
6
Office Version
  1. 365
Platform
  1. Windows
So, I have a date&time column in my raw data which I extract daily (the date&time refers to the audit date&time), along with a Feedback Status column(which can have only these three values Accepted/Rejected or Pending) We don't have any date/time for when the feedback was Accepted or Rejected....

I need to create a column for Ontime or Late Feedback acknowledgement where the condition is => if it has been over 48 hours from the Audit date&time and the Feedback Status is "Accepted"or"Rejected" it should return "Late Acknowledgement"; Or if it has been less than 48 hrs from the Audit date&time and the Feedback Status is "Accepted" or "Rejected" it should return "Ontime Acknowledgement"

I have used this formula below in excel:
IFS(AND (NOW()-A2<2, OR (B2="Accepted", B2="Rejected")), "On Time Acknowledgement", AND (NOW()-A2>2,OR(B2="Accepted", B2="Rejected")), "Late Acknowledgement", B2="Pending", "Pending")
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: reddit
There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

Forum statistics

Threads
1,223,634
Messages
6,173,474
Members
452,516
Latest member
archcalx

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top