Forum Discussion
craigpowell
8 years agoRegular Visitor
Data refresh filter too slow
Hi All, Very new (first post) to PowerBI, M and Dax. I am trying to filter at data refresh the lines included in the data load based on whether a value in one column exists in another column in...
- 8 years ago
- create a new query pointing to StatePostcode (call it Postcodes)
- Remove all colums other thatn postcode
- remove duplicates
- Set so it doesn't load.
- create a merge query starting with Address and join to Postcodes query from above
- left outer join
- expan the columns to extract the postcode from Postcodes.
- Filter on the new column where [postcode] <> null
- remove the extra postcode column.
you are done
MattAllington
Community Champion
8 years ago- create a new query pointing to StatePostcode (call it Postcodes)
- Remove all colums other thatn postcode
- remove duplicates
- Set so it doesn't load.
- create a merge query starting with Address and join to Postcodes query from above
- left outer join
- expan the columns to extract the postcode from Postcodes.
- Filter on the new column where [postcode] <> null
- remove the extra postcode column.
you are done
- craigpowell8 years agoRegular Visitor
Cheers Matt.
Worked perfectly!