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
The Microsoft ecosystem for business applications can sometimes be difficult to navigate, especially when discussing Dynamics 365 Customer...
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