Forum Discussion
Salauat
5 years agoRegular Visitor
New column calculated by grouping
Hello gents, I have a table, which contains few columns, which I use to drill through visualizations. I want to create a new calculated column, which will be looking into "A1" and "Status". Can yo...
Jos_Woolley
Solution Sage
5 years agoHi,
NewColumn =
REPT (
"Not ",
CALCULATE (
COUNTROWS ( 'Table' ),
'Table'[Status] = "Not Good",
'Table'[A1] = EARLIER ( 'Table'[A1] )
) > 0
) & "Good"
Regards