Consider this text in a single cell http://localhost/image_1.jpg, http://localhost/image_2.jpg, http://localhost/image_3.jpg
I need to generate the text using a formula where I simply type how many images I need, I’ve tried to use the REPT
function but I can’t know the current index to append it:
= REPT(CONCATENATE("http://localhost/image"; "_1.jpg, "); 2)
The formula above generates http://localhost/image_1.jpg, http://localhost/image_1.jpg,
(the last ,
is no big deal), is there a function that auto-increment a number in each cell? any alternatives?