Hey team,
I want to hide a column based on the Parameter value. The Parameter name is "ReportLevel" which is an enum with values "Customer" ,"Project", "Estimate". If the Parameter selected value = "Customer" then hide the ProjectId and Project Name field.
I used this expression the column visibility expression of ProjectId , but every time I use write this expression in the column visibility the report gets deployed but I get an error on my front end "Something went wrong while generating the report. Please try again." and when I remove this condition it works normally. Please can you help me resolve this issue. I want to hide the column based on the selected parameter
=iif(Parameters!ProjectEstimateMain_Report_Level.Value=0,false,true)