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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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