Forum Discussion
Excluding based on criteria
- 6 years ago
PowerBI123456 add a new column in power query using following M code, assuming Jan 01st, 2020 is a fixed date
if [Edit Date] < #date(2020,1,1) then "Yes" else "No"I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
- 6 years ago
PowerBI123456 See attached solution, tweak it as per your need. I hope this will get you going.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
PowerBI123456 add a new column in power query using following M code, assuming Jan 01st, 2020 is a fixed date
if [Edit Date] < #date(2020,1,1) then "Yes" else "No"
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
- PowerBI1234566 years ago
Post Partisan
parry2k Thanks, but its not dependent on the edit date. I want to exclude edits where there are multiple claim releases for one particular claim ID and if any of those release dates are before 1/1/2020. Hope that makes sense!
- parry2k6 years ago
Super User
PowerBI123456 not entirely.
- PowerBI1234566 years ago
Post Partisan
parry2k So looking at the example below:
Claim A: I want to keep because there is only one claim A.
Claim B: I want to exclude because where is more than one claim B, and one of the release dates is before 1/1/2020.
Claim C: I want to keep because even though there is more than one claim C, both release dates are after 1/1/2020.
The edit date doesn't matter. Does that help?