flaviooooo
Programmer
Hey,
I have an excel like this:
Week Order1 Order2 Order3
1 123456 123457 123457 01
2 123458 123459
2 123460
Now I would like to count the amount of distinct orders in each row. Watch out, an distinct order is only the first 6 digits. So in Week 1 for example 123457 and 123457 01 are actually the same order!
The result I would like is:
Week Order1 Order2 Order3 COUNT
1 123456 123457 123457 01 2
2 123458 123459 2
2 123460 1
Can this be done?
Thanks in advance
I have an excel like this:
Week Order1 Order2 Order3
1 123456 123457 123457 01
2 123458 123459
2 123460
Now I would like to count the amount of distinct orders in each row. Watch out, an distinct order is only the first 6 digits. So in Week 1 for example 123457 and 123457 01 are actually the same order!
The result I would like is:
Week Order1 Order2 Order3 COUNT
1 123456 123457 123457 01 2
2 123458 123459 2
2 123460 1
Can this be done?
Thanks in advance