Forum Discussion

Power-CJ's avatar
Power-CJ
Helper I
3 years ago
Solved

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?

2 Replies