Need Help please

I have created two virtual columns. With the help of which I want to count the unique [team name]  But my [team name] is of Enumlist types. Whose doing is single counting two names. 

First virtual column expression

SPLIT(CONCATENATE([TEAM NAME]), " & ")

Second Virtual Column Expression

COUNT(UNIQUE(FILTER("photos"[First Virtual], IN([DATE], LIST(TODAY())))))

Screenshot_20230516-072035540 (1).jpg

Solved Solved
0 14 462
1 ACCEPTED SOLUTION

Good day  @Sirfyaad

 

Try this idea it will work

[First virtual column] expression   Type of the column LIST

SPLIT(SELECT(photos[TEAM NAME],AND(CONTAINS([TEAM NAME], "&"),[DATE]=TODAY()) ),"&")
+
SELECT(photos[TEAM NAME], AND(NOT(CONTAINS([TEAM NAME], "&")),[DATE]=TODAY()))

 

[Second Virtual Column] Expression  Type of the column Number

COUNT( UNIQUE([First virtual column]))

View solution in original post

14 REPLIES 14
Top Labels in this Space