2012385096
Technical User
Hi,
How would i do conditional grouping from the multiple fields? For example,
Id Name Err1 Err2 Err3 Err4 Err5
1 ABC 1 0 0 1 0
2 XYZ 0 1 0 1 1
3 DEF 1 1 1 1 1
I need to do grouping from the Err fields where value = 1. My group by should look like this
Group : Err1 and Err4
1,ABC
Err2, Err4 and Err4
2,XYZ
Err1, Err2, Err3, Err4 and Err5
3,DEF
Thanks in advance for your help.
How would i do conditional grouping from the multiple fields? For example,
Id Name Err1 Err2 Err3 Err4 Err5
1 ABC 1 0 0 1 0
2 XYZ 0 1 0 1 1
3 DEF 1 1 1 1 1
I need to do grouping from the Err fields where value = 1. My group by should look like this
Group : Err1 and Err4
1,ABC
Err2, Err4 and Err4
2,XYZ
Err1, Err2, Err3, Err4 and Err5
3,DEF
Thanks in advance for your help.