Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Add column according to values from different rows

I created this simplified table of my data:

 

 CountryValueYearResult
France23002021Both
Spain54322021Only '21
Germany02021Only '22
Italy02021None
France31232022Both
Spain02022Only '21
Germany44512022Only '22
Italy02022None

 

Basically, I want to obtain the column Result from the first three columns using the following logic:

- If a Country reports values greater than 0 in any row for the year 2021 AND year 2022, result would be Both.

- If the values greater than 0 are reported for only one year, result would be Only '21 or Only '22, depending on the case.

- If a Country only reports 0 in all rows, result would be None.

 

Note that as in the example, the result must be shown in all rows for each country.

 

I'm oppen to any suggestions.

Thanks in advance.

1 ACCEPTED SOLUTION
zzcc
Frequent Visitor

Hi, @Anonymous 

 

try to create a measure like this:

Measure = 
var _t=FILTER(ALL('Table'),'Table'[Country]=MAX('Table'[Country]))
var _t2=FILTER(_t,[Value]>0)
var _t3=
SWITCH(COUNTROWS(_t2),2,"Both",1,"Only"&MAXX(_t2,[Year]),"None")
return _t3

result:

zzcc_0-1627057961139.png

 

 

Best Regards

zc

Did I answer your question? Mark my post as a solution!

View solution in original post

1 REPLY 1
zzcc
Frequent Visitor

Hi, @Anonymous 

 

try to create a measure like this:

Measure = 
var _t=FILTER(ALL('Table'),'Table'[Country]=MAX('Table'[Country]))
var _t2=FILTER(_t,[Value]>0)
var _t3=
SWITCH(COUNTROWS(_t2),2,"Both",1,"Only"&MAXX(_t2,[Year]),"None")
return _t3

result:

zzcc_0-1627057961139.png

 

 

Best Regards

zc

Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors