Reputation: 373
I am currently working on a report in which the columns are dynamic. Now my boss wants to have a pattern on table header like below.
But my columns are dynamic. I have tried using =RowNumber(nothing) mod 7 = n , but i never got the right combination. Please help. Thanks in advance
Upvotes: 1
Views: 344
Reputation: 8892
If you want to show the column color depending on its count and you are doing the column grouping then
= IIF (CountDistinct(Fields!FieldUsedAsColumnGrouping.Value,"DatasetName") Mod 7 = 0,"grey color","some other color")
Hope this helps..In case of issue comment.
Upvotes: 1