Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I have a 'Mapping' table with the following columns: Mapping[Country] and Mapping[Region].
I have a second table 'Articles' that has two columns: Article[ID] and Article[Geography_Tags]. The Article[Geography_Tags] field contains a list of countries and/or regions that were tagged for that article (separated by semicolons). For example, the below are some values in this column:
Because there is no common key between the Mapping[Country] and Article[Geography_Tags] columns, there is not a relationship between the two tables.
On the table visual, I have a list of selected Mapping[Country]. For each selected Mapping[Country], I'd like to calculate the number of Articles for which that country (or country's region) was tagged.
Based on the above italicized values in the Articles[Geography_Tags] column, I would expect the following results:
Since the calculation depends on the filter context of Mapping[Country], I assume this should be a measure, but after that I'm a little stuck. Any and all help is greatly appreciated!
Solved! Go to Solution.
I was able to solve this. For anyone who comes across this:
Count of Articles =
MAXX (
Mapping,
VAR _countrySemiColon =
CONCATENATE ( ";", Mapping[Country ] )
VAR _regionSemiColon =
CONCATENATE ( ";", Mapping[Region Tag] )
VAR _FilteredTable =
FILTER (
Articles,
(
SEARCH ( _countrySemiColon, Article[Geography_Tags],, 0 ) <> 0
|| SEARCH ( _regionSemiColon, Article[Geography_Tags],, 0 ) <> 0
)
)
RETURN
COUNTROWS ( _FilteredTable )
)
Change the semicolons to pipe "|" and attack your enumerations with the PATH functions.
Does it really matter if you match to country or region? If the combined list of countries and regions is unique (ie no two countries have the same region etc) then you could combine you Mapping columns
And lastly, use SWITCH() to exit the search after the first hit.
Thanks for the response, @lbendlin. There are multiple countries that have the same Region (the list of two items I included in my example was just a short list). I have a list of 95 countries, each of which belongs to a single region.
Because a value in Article[Geography_Tags] could contain the country, the region, or both, my thought was to filter the Article table to include only rows where Article[Geography_Tags] contains either the selected Mapping[Country] or the country's Mapping[Region]. But I think that's where I'm getting hung up
here's another crazy idea approach
add a semicolon to the front and the back of your enumeration.
for example instead of
United States;Asia
this would be
;United States;Asia;
That helps to prevent bleedover.
Next, use DAX FIND() or SEARCH() functions with that string against your Mapping columns, First against the Country column and then (if nothing found) against the region column
Thanks, @lbendlin. In PowerQuery, I prepended a semicolon. I then created the below measure, which works. However, I have one final question.
In addition to showing the below value where the visual provides a filter context to a single market, I'd also like to have a card that will show the maximum value for any of the selected markets. Put another way, if a user selects China and United States, the card would compute the below for both United States and China, and then take the maximum of that value.
How can I modify the below to work with an iterator (which is what I think I need?)
VAR _country =
SELECTEDVALUE ( Mapping[Country], "Multi" )
VAR _countrySemiColon =
IF ( _country <> "Multi", CONCATENATE(";", _country), "Multi" )
VAR _region =
IF (
_country <> "Multi",
LOOKUPVALUE (Mapping[Region], Mapping[Country], _country),
"Unknown"
)
VAR _regionSemiColon = IF ( _country <> "Multi", CONCATENATE(";", _region), "Unknown" )
RETURN
IF (
_country <> "Multi",
COUNTROWS (
FILTER (
Article,
SEARCH ( _countrySemiColon, Article[Geography_Tags],, 0 ) <> 0
|| SEARCH ( _regionSemiColon, Article[Geography_Tags],, 0 ) <> 0
)
),
"Multiple Countries are selected"
)
I was able to solve this. For anyone who comes across this:
Count of Articles =
MAXX (
Mapping,
VAR _countrySemiColon =
CONCATENATE ( ";", Mapping[Country ] )
VAR _regionSemiColon =
CONCATENATE ( ";", Mapping[Region Tag] )
VAR _FilteredTable =
FILTER (
Articles,
(
SEARCH ( _countrySemiColon, Article[Geography_Tags],, 0 ) <> 0
|| SEARCH ( _regionSemiColon, Article[Geography_Tags],, 0 ) <> 0
)
)
RETURN
COUNTROWS ( _FilteredTable )
)
User | Count |
---|---|
21 | |
19 | |
12 | |
9 | |
9 |
User | Count |
---|---|
30 | |
26 | |
15 | |
13 | |
10 |