Hello Folks,I have a brain block today when trying to calculate a percentage difference from Minimun value of a group of values for a specific grouping. I have a group and for each group of values I find the minimum which I post at the bottom of the group as shown in the picture, but also for each of the individual values, I have to find the percentage difference from that Min found. I cant seem to use the following calculation as it finds the min at the row level, not at the column level.IIF(((Fields!BALANCE.Value * 100) / MIN(Fields!BALANCE.Value)) > 100 AND ((Fields!BALANCE.Value * 100) / MIN(Fields!BALANCE.Value)) > Parameters!Percentage.Value, ((Fields!BALANCE.Value * 100) / MIN(Fields!BALANCE.Value)) - 100, Nothing)If the percentage is greater than a parameter specified number, I want to display the percentage difference, otherwise i dont want to display nothing as noted in the image below.[img]https://onedrive.live.com/redir?resid=B89C3421E20DD3C9!3032&authkey=!AOGqATPohDxy20g&v=3&ithint=photo%2cPNG[/img]In the image above, 30 would be the minimum for the entire group, which later i have to use at the row level to calculate the percentage difference higher from the minimum for each row.Fields!BALANCE.Value is the Plan House Cost field in the picture. Parameters!Percentage.Value is the parameter that determines the percentage value wanted by the user.Also, I am using a regular table with one grouping only. No Matrix.
↧