Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Problem parsing DAX

Hi everybody

I have write a DAX expression that is working fine, is this: 

 

 

but when i was coding in PowerBI encountered this:


PowerBI is showing the bracket inside the string

  • Anonymous ,

     

    Modify the measure as below:

     

    Resultado Neto =
    CALCULATE (
        [Saldo Real];
        FILTER ( 'Detalle Informes'; 'Detalle Informes'[inf_Concepto] = "A.6" )
    ) - [SaldoReparto]
    

     

     

    Regards,

    Jimmy Tao

1 Reply

  • v-yuta-msft's avatar
    v-yuta-msft
    Community Support

    Anonymous ,

     

    Modify the measure as below:

     

    Resultado Neto =
    CALCULATE (
        [Saldo Real];
        FILTER ( 'Detalle Informes'; 'Detalle Informes'[inf_Concepto] = "A.6" )
    ) - [SaldoReparto]
    

     

     

    Regards,

    Jimmy Tao