Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Help DAX formula

Hello,    I need help with a function in DAX, the problem comes using a report tooltip.   I have a table in a page that I use for a report tooltip, in the table theres a column for the sales and ...
  • v-frfei-msft's avatar
    7 years ago

    Hi Anonymous ,

     

    To update your measure as below to have a try.

     

    This is the function for "aaaa": 
    
    CALCULATE (
            [Vlr Ventas Internas];
            FILTER (
                    ALLSELECTED ( 'Aux Marcas Nutresa' );
                    'Aux Marcas Nutresa'[Empresa] = "Nutresa"
            )
    )