Tuesday, August 9, 2022

Row visibility based one field in report using X++

Row visibility is based on one field in the report using X++.


  • Select the whole row and right click and select properties.
  • Select row visibility properties and add the below code.

=IIF(Fields!AccountNum.Value = "", true, false)   

AccountNum is my field. Use your field.


Column visibility 

  • Select the whole column and right click and select properties.
  • Select visibility properties and add the below code.
=Parameters!parmcompany1.Value = "" 



Keep daxing!!
 

No comments:

Post a Comment