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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
deedeedudu
Helper II
Helper II

Return the list from a text column based on filter condition on another one

Hi,

 

I'm trying to create a measure to get a list in the column titled "Enterprise" based on another column "Alert_Breach" for values that has only "Alert"

 

Example

EnterpriseAlert_Breach
AAA 
BBBAlert
CCCAlert

 

I should get the list as "BBB" and "CCC" so that when i add the measure in card i get BBB and CCC

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Please try this measure expression, replacing Alerts with your actual table name.

 

mahoneypat_0-1648814699180.png

 

AlertList =
CONCATENATEX(
CALCULATETABLE(
DISTINCT( Alerts[Enterprise] ),
Alerts[Alert_Breach] = "Alert"
),
Alerts[Enterprise],
", "
)

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Employee
Employee

Please try this measure expression, replacing Alerts with your actual table name.

 

mahoneypat_0-1648814699180.png

 

AlertList =
CONCATENATEX(
CALCULATETABLE(
DISTINCT( Alerts[Enterprise] ),
Alerts[Alert_Breach] = "Alert"
),
Alerts[Enterprise],
", "
)

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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