Balajibenz
Board Regular
- Joined
- Nov 18, 2020
- Messages
- 80
- Office Version
- 2013
- Platform
- Windows
Hi All,
Can someone help me with below requirement.
I have data sheet1 where there is "Month" header is column "I" and "COUNT" header in column "M". Sample data looks like below.
what I am looking for is to re-arrange the month and count as shown below.
Code has to looks for the months present in "MONTH" column and need to insert each column for each month next to "MONTH" column itself.
Once columns are inserted respective count needs to be placed under that month and other cells must be left blank. Thank you in advance.
Can someone help me with below requirement.
I have data sheet1 where there is "Month" header is column "I" and "COUNT" header in column "M". Sample data looks like below.
Number | Name | MONTH | COUNT |
121 | Ram | February | 40 |
132 | Carey | February | 32 |
125 | Salim | February | 40 |
127 | Kumar | February | 40 |
127 | Kumar | January | 12 |
121 | Ram | January | 16 |
132 | Carey | January | 20 |
125 | Salim | January | 40 |
132 | Carey | March | 32 |
125 | Salim | March | 40 |
what I am looking for is to re-arrange the month and count as shown below.
Number | Name | MONTH | January | February | March | COUNT |
121 | Ram | February | 40 | 40 | ||
132 | Carey | February | 32 | 32 | ||
125 | Salim | February | 40 | 40 | ||
127 | Kumar | February | 40 | 40 | ||
127 | Kumar | January | 12 | 12 | ||
121 | Ram | January | 16 | 16 | ||
132 | Carey | January | 20 | 20 | ||
125 | Salim | January | 40 | 40 | ||
132 | Carey | March | 32 | 32 | ||
125 | Salim | March | 40 | 40 |
Code has to looks for the months present in "MONTH" column and need to insert each column for each month next to "MONTH" column itself.
Once columns are inserted respective count needs to be placed under that month and other cells must be left blank. Thank you in advance.