Hey probeen,
Try this formula in Sheet Required Data (No Macro nor VBA required
):
In A1 type :
=INDEX('Present Data'!$A:$D,ROUNDUP(((ROW()-1)*260+COLUMN())/4,0),IF(RIGHT((COLUMN()+(ROW()-1)*260)/4,2)="25",1,IF(RIGHT((COLUMN()+(ROW()-1)*260)/4,2)=".5",2,IF(RIGHT((COLUMN()+(ROW()-1)*260)/4,2)="75",3,4))))
Then Copy it until it reach the matrix you want (260 Columns and 69 Row)
the Row will not be limited to 69 (you can add up more than 69 row)
This formula, the Column is limited to 260 Columns (if you copy to more than 260 column it will not the correct result at the next row)
If you want to have the column and row to be unlimited, then change all the 260 to COUNTA(1:1) which would count those non blank column of a row.
That solve the matrix problem in your sheet
Bookmarks