Forum Discussion

FrankS72's avatar
FrankS72
Regular Visitor
6 years ago
Solved

Calculated Column

I'm struggling to performa required calc, which I want to do in a new column.   Example Data: Table: Monthly_Sales                 Consultant Month Sales Best Month % Best A...
  • Fowmy's avatar
    6 years ago

    FrankS72 

     

    Try This:

     Best NEW = 
    
    VAR BEST = CALCULATE( MAX(SALES[Sales]),ALLEXCEPT(SALES,SALES[Consultant]))
    
    RETURN
    
    BEST
    
    

     

    % vs BEST = 
    
    DIVIDE(
        SALES[Sales],
        SALES[Best NEW]
    )

     

    ________________________

    Did I answer your question? Mark this post as a solution, this will help others!.

    I accept KUDOS 🙂

    YouTube, LinkedIn