Forum Discussion

jrnorte's avatar
jrnorte
New Member
6 months ago
Solved

Parametros en matriz

Tengo un reporte con una matriz con las filas como parametros de campo. Todo funciona en el desktop, pero al publicarlo en report server no funciona.   No se refrescan las filas en la matriza al s...
  • v-sshirivolu's avatar
    v-sshirivolu
    6 months ago

    Hi jrnorte ,
    The behavior you are seeing is expected in Report Server. While Power BI Desktop allows field parameters to dynamically switch dimensions and fully recalculate visuals, Power BI Report Server does not process those metadata changes the same way unless the parameter directly affects the dataset logic. In your case, the slicer created from the parameter table is only changing the labels in the matrix because it is not being used inside a DAX measure or filter that impacts the fact table's filter context. To resolve this, instead of relying on field parameters alone, you will need to use the selected slicer value within a DAX measure , for example, using SELECTEDVALUE and SWITCH, so that the calculation itself changes based on the selection. Once the parameter actively participates in the measure logic, the dataset result will be recalculated and the matrix will update both labels and values correctly in Report Server.