Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey Guys,
I'm trying to add a counter where two sets of data can occur. Is there a way to sum set 1 or set 2?
For example,
Set 1: Animal = Dog, Color = Black, Gender = Male
Set 2: Animal = Cat, Color = White, Gender = Female
Maybe something like
sum({<Animal={'Dog'}, Color={'Black'}, Gender={'Male'}>+<Animal={'Cat'}, Color={'White'}, Gender={'Female'}> counter)
Any ideas?
Well, that worked. Just put a + inbetween them.