If there is a requirement to hide a column if all rows are empty. Use the below expression
=IIF(Fields!ColumnSample.Value = Nothing, True, False)
D365 FinOps & Power Platform Unlocked is your go-to source for expert insights on Microsoft Dynamics 365 Finance & Operations and the Power Platform. Discover tutorials, tips, and best practices to leverage D365 F&O alongside Power BI, Power Apps, Power Automate, and more. Stay up-to-date with the latest innovations and solutions to optimize your enterprise systems and drive business success with ease
As organizations embrace low-code development with Microsoft Power Platform , it becomes essential to manage and govern apps, flows, and dat...
this is not working in version 9.0 Dynamics 365
ReplyDeleteis there any other syntax ??
Use this instead
ReplyDelete=IIF(CountDistinct(Fields!fieldName.Value)=0, True,false)
Thank for sharing! Appreciated.
Delete