Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello
Need help filter out data in a dataset
I have a table that looks like this:
Date 1 | Date 2 | Value 1 | Values |
2022-09-01 | 2022-10-01 | A | 1231 |
2022-09-01 | 2022-10-02 | C | 1232 |
2022-09-01 | 2022-10-03 | B | 1233 |
2022-09-01 | 2022-09-01 | B | 1234 |
2022-09-01 | 2022-09-02 | A | 1235 |
2022-09-01 | 2022-09-03 | C | 1236 |
2022-09-01 | 2022-09-01 | B | 1237 |
I want to filter out rows in “date 2” column that don’t match the same month in “Date 1” column.
Expected result should be:
Date 1 | Date 2 | Value 1 | Values |
2022-09-01 | 2022-09-01 | B | 1234 |
2022-09-01 | 2022-09-02 | A | 1235 |
2022-09-01 | 2022-09-03 | C | 1236 |
2022-09-01 | 2022-09-01 | B | 1237 |
Anyone that can help me out here?
Solved! Go to Solution.
Hi @Westen
I'm not a power query expert but you can add a conditional flag column somthing like
each if Date.Month ( [column1] ) = Date.Month ( [column2] ) then 1 else null
then you can filter out the blanks
Hi @Westen
I'm not a power query expert but you can add a conditional flag column somthing like
each if Date.Month ( [column1] ) = Date.Month ( [column2] ) then 1 else null
then you can filter out the blanks
Thanks! That solves my problem.
In PowerQuery or in DAX? If DAX, what do you want to calculate?
I want to remove them in PowerQuery.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
119 | |
83 | |
47 | |
42 | |
34 |
User | Count |
---|---|
190 | |
79 | |
72 | |
49 | |
46 |