Forum Discussion
JayTG123
Advocate I
4 years agoAdding text together in one column
Hi all, I am struggling with how to sum the individual values in the reasons_for_refusal column (screenshot below) So what I am trying to achieve is the total of all rows which contains RC10...
- 4 years ago
Hi,
Ideally, in the Query Editor, you should first use the Split column > By delimiter and in the Advanced optios, select rows. This will ensure that each cell has only one reason. Then you can write this measure
Number of reasons = counta(Data[reasons_for_refusal])
Hope this helps.
Ashish_Mathur
Super User
4 years agoHi,
Ideally, in the Query Editor, you should first use the Split column > By delimiter and in the Advanced optios, select rows. This will ensure that each cell has only one reason. Then you can write this measure
Number of reasons = counta(Data[reasons_for_refusal])
Hope this helps.