Forum Discussion
boykin188
7 years agoFrequent Visitor
Multiple rows per unique ID
I have a table with multiple rows per unique ID, and some columns which reference "flags" (basically a 1 or 0) that something has occurred relative to that ID. Due to the way the data is structured,...
- Anonymous7 years ago
You can use Min / Max
FlagA = If(Max(Table1[ColA]) = 1, "Yes", "No")
Anonymous
7 years agoNot applicable
You can use Min / Max
FlagA = If(Max(Table1[ColA]) = 1, "Yes", "No")
- boykin1887 years agoFrequent Visitor
Thanks! Worked great!