however, when i tried this formula:
v_IsClip = Max(If(Count([v_TempIsClips] ) In ([STB].[Title]) > 1;"Clips";[v_TempIsClip]) ForEach ([v_TempIsClip];[Provider];[LengthInMinutes))
#MULTIVALUE is resolved but the result is wrong, For instance, the title AFTER should be a Clip but it's a Other now.
Title | Provider | LengthInMinutes | v_TempIsClips | v_IsClip |
---|---|---|---|---|
AFTER | EN | 7 | Clips | Clips |
AFTER | EN | 10 | Clips | Clips |
AFTER | EN | 13 | Others | Clips |
Title | v_IsClip |
---|---|
AFTER | Others |
Maybe because of Max() function.
Is there another function which populates the right result?