Hi!
I have a report, it contains fields Player and winnings. So each Player has a winning. And it looks like this:
Player_id - winnings
Jack - 50000
John - 25000
Ros - 45000
Joey - 31000
And I want to hide player_id field, for players whose winnings is less than 30000. I've tried to do it via macros by setting SetValue action with argument
[Reports]![Player1]![Player_ID].[Visible], 0
but it only works fine if you want to hide the whole Player_id column, but I need to hide just some of them. I tried to set a condition, but, obviously, it can't be met because it operates with the whole column of values... and thus condition Reports![Player1]![winnings]<30000 is incorrect.
Is there anyway I can do it ?
I have a report, it contains fields Player and winnings. So each Player has a winning. And it looks like this:
Player_id - winnings
Jack - 50000
John - 25000
Ros - 45000
Joey - 31000
And I want to hide player_id field, for players whose winnings is less than 30000. I've tried to do it via macros by setting SetValue action with argument
[Reports]![Player1]![Player_ID].[Visible], 0
but it only works fine if you want to hide the whole Player_id column, but I need to hide just some of them. I tried to set a condition, but, obviously, it can't be met because it operates with the whole column of values... and thus condition Reports![Player1]![winnings]<30000 is incorrect.
Is there anyway I can do it ?