cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Power-CJ
Helper I
Helper I

SWITCH CASE - Using Array List for Conditional Calculation

Hello there,

i'm writing a Dax Measure in Order to do an conditional Calculating at the Item Ledger Entry of articles.

I have 3 amounts with article numbers to do a different calculation.

The Switch Case will proof the number and based on that the SUM of the Ledger Entry will be divided with 9, 11 or 15

 

Till now my Code is like this  

 

Measure = 

 SWITCH(
        SELECTEDVALUE( $Item Ledger Entry'[Item No_] ),
        // AMOUNT 1
        1060, DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 9 ),
        1060, DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 9 ),
        // AMOUNT 2        
        1102 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),
        1100 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),
        1099 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),
        1098 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),
        1093 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),  
        1092 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),    
        1091 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),    
        1078 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),
        1057 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 11 ),  
        // AMOUNT 3
         1078 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 15 ),
         1110 , DIVIDE( ABS( SUM( $Item Ledger Entry'[Stock] ) ), 15 ),
         BLANK()
    )
 
Now i'm plannin gto reduce line of Code by using Array-List variables like this:
 
    VAR _AMOUNT1 = {1060, 1061}
    VAR _AMOUNT2 = {1057, 1078, 1091, 1092, 1093, 1098, 1099, 1100, 1102}
    VAR _AMOUNT3 = {1078, 1110}
 
How can i check if the Item_No of the table Itme Ledger Entry is part of a array-List in order to the the specificant division?
1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @Power-CJ ,

 

Does the "IN" operator work in your case?

 

Here an example:

tackytechtom_0-1672321492443.png

 

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/





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

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Power-CJ
Helper I
Helper I

Hello Tom,

 

thanks for the quick Response.

 

There Where you placed 'Table'[Order] I only can place Measure and no Columns of Table.

 

But when i set the function SELECTEDVALUE() in front of the column it will work.

 

thanks a lot 

 

 

tackytechtom
Super User
Super User

Hi @Power-CJ ,

 

Does the "IN" operator work in your case?

 

Here an example:

tackytechtom_0-1672321492443.png

 

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/





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

Proud to be a Super User!




Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors