My rows contain data similar to below in different cells right next to each other
+--------------+--------------+--------------+---------------+---------------+
| Print1 | Print2 | Print3 | Print4 | Print5 |
+--------------+--------------+--------------+---------------+---------------+
| Pad Print | Pad Print | Screen Print | Digital Print | Digital Print |
+--------------+--------------+--------------+---------------+---------------+
| Screen Print | Screen Print | Screen Print | Pad Print | Digital Print |
+--------------+--------------+--------------+---------------+---------------+
| Screen Print | Screen Print | Pad Print | Pad Print | Pad Print |
+--------------+--------------+--------------+---------------+---------------+
I want to remove repeating cells and get them to look like below
+--------------+--------------+---------------+--------+--------+
| Print1 | Print2 | Print3 | Print4 | Print5 |
+--------------+--------------+---------------+--------+--------+
| Pad Print | Screen Print | Digital Print | | |
+--------------+--------------+---------------+--------+--------+
| Screen Print | Pad Print | Digital Print | | |
+--------------+--------------+---------------+--------+--------+
| Screen Print | Pad Print | | | |
+--------------+--------------+---------------+--------+--------+
Can you guys please tell me how to achieve this?