Hello,
I have this simple dataset as shown below
| Month | Incoming Calls | Avg Incoming Call Time | Outgoing calls | Avg. Outgoing Call Time |
| Jan | 5 | 10 | 30 | 15 |
| Feb | 6 | 12 | 40 | 5 |
I am trying to get it into this format
| Month | Call Type | No of Calls | Avg Call Time |
| Jan | Incoming | 5 | 10 |
| Jan | Outgoing | 30 | 15 |
| Feb | Incoming | 6 | 12 |
| Feb | Outgoing | 40 | 5 |
I thought it was going to be a simple calculation but I am not able to get it into the desirable format. I am using Transpose but I guess I am not using it the right way. Thanks for your help.
Solved! Go to Solution.
Hi ben, so the null values, are because of the cross-tab function, and I cannot figure out a way to clean the data .
Any other tricks your sleve? I have attached a few screenshots for you to take a look
Yea the nulls are a result of the cross tab, and the data cleanse tool doesnt see the columns, any other suggestions?
Worked like a charm Ben,
Thanks for the help
