Repeating Table - Supress Repeating Values via Conditional Formatt

B

Bob C.

Nope, but thanks. I'm talking about values in a column. Assume you sort by
the col, and data is:

aName, aColor, athing, anum
Bob, red, face, 1
Bob, green, dog, 4
Bob, orange, llama, 5

the result should be

Bob, red, face, 1
, green, dog, 4
, orange, llama, 5

Fixd it via conditional format to set the font color same as the background
when the formula evals to true:
current()/preceding-sibling::myDatasource/aName
 
Top