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
Matt0515
Frequent Visitor

Creating a List of Records Based on a Measure

Hello all, and thanks in advance for any feedback on the following question.

 

I have a rather complex measure that I would like to not simply count the rows that qualify, but rather have the ability to display the rows information (columns) in a list as well.

 

Is there a way I can structure a measure to do this?

 

example of my current measure - set up to return the count (sum of an index column) of those that qualify.

 

Total 2020 MT SQL =
CALCULATE (
    SUM(Current_Report_Raw_Data[Index])+0,
    FILTER (
        ALLSELECTED ( Current_Report_Raw_Data ),
            YEAR ( Current_Report_Raw_Data[SQL Date] ) = 2020
            &&          ( Current_Report_Raw_Data[Opportunity Solution] = "MT")
            &&          ( Current_Report_Raw_Data[Sirius Stage] = "X")
            &&          ( Current_Report_Raw_Data[Opportunity Record Type] = "A" || Current_Report_Raw_Data[Opportunity Record Type] = "B")
            &&          ( Current_Report_Raw_Data[Crystallised Opp Booking Value (GBP)] > 1
            &&          ( Current_Report_Raw_Data[Crystallised Opp Booking Value (GBP)] > 5000 || NOT Current_Report_Raw_Data[Opportunity Sale Type] = "C")
            && NOT      ( Current_Report_Raw_Data[Enterprise Sales Team] ) = "D"
            && NOT      ( Current_Report_Raw_Data[Account Name] = "E" || Current_Report_Raw_Data[Account Name] = "F")
            && NOT      ( Current_Report_Raw_Data[Main Product] = "G" || Current_Report_Raw_Data[Main Product] = "H")
            && NOT      ( Current_Report_Raw_Data[Reason for Closing] = "I")
            && NOT      ( Current_Report_Raw_Data[Opportunity Sale Type] ) = "J"

    )
))
 
Thanks again for any help!
 
- Matt
1 ACCEPTED SOLUTION

Hi @Matt0515 ,

 

According to your example, you could try SWITCH() function.

SWITCH (
    TRUE (),
    AND (
        OR ( 'Table'[Column X] = "a", 'Table'[Column X] = "b" ),
        'Table'[Column Y] = "xyz"
    ), "Business Unit 1",
    AND (
        OR ( 'Table'[Column X] = "c", 'Table'[Column X] = "d" ),
        'Table'[Column Y] = "abc"
    ), "Business Unit 2"
)

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@Matt0515 , Not very clear

Your condition seems mutually exclusive.  So the option is that you create a column or keep the same measure.

 

 

Hi @amitchandak, sorry not very clear.

 

The condition is mutually exclusive.  How can I create a column in my dataset based on my measure?  I imagine that is done in the Query Editor?

 

Thanks!

@amitchandakAllow me to rephrase:

 

I have a dataset where I need to identify what business unit each row belongs to.

 

the definition of each business unit is diffirent than the next.

 

I would like to create a custom column that will result in the business unit for each row.

 

The example above would define a specific business unit and the paramiters would change for the next business unit ( and so on )

 

Where I am struggling is how to structure the Custom Column code to accept multiple paramiters to achieve a single column with multiple results.

 

example:

 

 IF Column X = "a" OR "b", AND Column Y = "xyz" THEN "Business Unit 1"

OR / ELSEIF

IF Column X = "c" OR "d", AND Column Y = "abc" THEN "Business Unit 2"

 

Hopefully this makes more sense.  I'm ultimatly attempting to make a single column of multiple resuts based on rules that identify exclusive rows.

 

Thanks

 

 

Hi @Matt0515 ,

 

According to your example, you could try SWITCH() function.

SWITCH (
    TRUE (),
    AND (
        OR ( 'Table'[Column X] = "a", 'Table'[Column X] = "b" ),
        'Table'[Column Y] = "xyz"
    ), "Business Unit 1",
    AND (
        OR ( 'Table'[Column X] = "c", 'Table'[Column X] = "d" ),
        'Table'[Column Y] = "abc"
    ), "Business Unit 2"
)

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.
karun_r
Employee
Employee

Can you share a sample output that you have right now and the sample that you would like to have ?

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.