i have an excel sheet with these 4 columns:
FROM_YEAR|TO_YEAR|MAKE|MODEL
So these four columns are filled, now i want to add three extra columns, it could be to the right of same sheet -see image- or in a new sheet...
Let's say i have:
2000,2003,Honda,Civic
I want to repeat MAKE and MODEL from 2000 to 2003 like this:
2000,Honda,Civic
2001,Honda,Civic
2002,Honda,Civic
2003,Honda,Civic
Into the right or in a new sheet, having as reference the columns from the left... i could do this with PHP and MySQL database but i want to do this in Excel cuz i want to learn if it is possible.
You can see a test sheet i've uploaded in google for reference: https://docs.google.com/spreadsheets/d/1YLY4Dc0NJZ8BW86CTEVPuF_EIOzks591ENU_vEyy5Bw/edit?usp=sharing
Let me know!