Hi all,
Seeking your help to design a section copy all values from first row to rest rows.
Since the matrix I have is over 30 columns & 5k rows of data. required a dynamic copying solution. Much Appreciated
Sample Input
| ID | name | product | type | mode | source | group | AType |
| 123 | CAC31 | Apple | user | 1 | 2 | 1 | Bus |
| 341 | | | | | | | |
| 567 | | | | | | | |
Sample output
| ID | name | product | type | mode | source | group | AType |
| 123 | CAC31 | Apple | user | 1 | 2 | 1 | Bus |
| 341 | CAC31 | Apple | user | 1 | 2 | 1 | Bus |
| 567 | CAC31 | Apple | user | 1 | 2 | 1 | Bus |