Forum Discussion

smit16299's avatar
smit16299
Frequent Visitor
8 months ago
Solved

Paginated Report conditional formatting issue when Amount is NULL and totals are in same row scope.

  Hi Community, I’m facing a conditional formatting issue in Power BI Paginated Reports (SSRS) and wanted to highlight it here to get inputs or confirm best practices. Scenario I have a matrix ...
  • v-sgandrathi's avatar
    v-sgandrathi
    8 months ago

    Hi smit16299,

     

    In Paginated Reports, total and margin rows like Total Revenue or Gross Margin (%) are not provided by the dataset but are generated by SSRS during rendering using group aggregates. As a result, any textbox linked to a dataset field will show as NULL for these rows. This NULL value is a rendering artifact, not missing data.

     

    Because of this, using conditional formatting with IsNothing() is unreliable, especially when totals and detail rows are in the same row group. While InScope() can help with structure, it does not reliably identify totals in this case.

     

    The best approach is to base formatting on the row’s purpose rather than field values. By using CUSTOM_DISPLAY_NAME or a row-type flag to specifically target total or margin rows and applying formatting at the row or static cell level, you can achieve consistent results. This method is considered best practice for financial and P&L reports.

     

    Thank you.