Forum Discussion
datawhale
3 years agoNew Member
Convert rows from multiple columns into a single column
I have the following table:
I would like to create a single column from the three columns (good, caution, critical) only for value 'b'. The result should be like:
(note: id and id_1 are identical)
Hope this helps
2 Replies
- vicky_Super User
This should get you started - just add more if conditions (or use switch) to add in the rest.
Table 2 = SUMMARIZE('Table', 'Table'[id], "status", IF(CONTAINSSTRING(VALUES('Table'[good]), "b"), "Good") ) - PadycosmosSolution Sage
Hope this helps