Power BI Multiple Filter Criteria

dreid1011

Well-known Member
Joined
Jun 4, 2015
Messages
3,498
Office Version
  1. 365
Platform
  1. Windows
Good morning,

I am trying to convert my Access queries to Power BI and I am running into a filter problem. In the image below, in Access, I could define an entire row of criteria, and then another, and another.
In Power BI, I have managed to set up the filter criteria for the yellow fields, but I am unsure how to set up the criteria for the green field. Notice as the ranges for TAXLOT overlap with each row, but they need to be specific to the rest of the criteria on their row. How might I achieve this in Power BI? My Google searches have yielded no results because I don't know the right words to describe the issue for searching.

Thank you

1717086863390.png
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Solved by combining Year, Township, Range, Section, Q Section, QQ Section columns, converting Taxlot column to whole number and using the following calculated column:
Power Query:
= Table.AddColumn(#"Changed Type2", "FLAG - NEDONNA BEACH AREA", each if [#"MAP"] = "2N1020AB" and [#"MAP - TAXLOT (#)"] >= 101 and [#"MAP - TAXLOT (#)"] <= 10000 then "NB" else
if [#"MAP"] = "2N1020BA" and [#"MAP - TAXLOT (#)"] >= 100 and [#"MAP - TAXLOT (#)"] <= 13800 then "NB" else
if [#"MAP"] = "2N1020BD" and [#"MAP - TAXLOT (#)"] >= 100 and [#"MAP - TAXLOT (#)"] <= 15800 then "NB" else
if [#"MAP"] = "2N1020CA" and [#"MAP - TAXLOT (#)"] >= 300 and [#"MAP - TAXLOT (#)"] <= 12200 then "NB" else "")
 
Upvote 0
Solution

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

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