Hey Folks,
I'm hoping for some advise on how to take the value in 1 cell of 1 row and convert it to a different sheet over 4 rows adding some constant text before and after the cell value.
For every row in Sheet1, column H (only if it contains data) I need to use the cell value and add a static value to it.
Sheet 1
Column H
This is a widget
Sheet 2
Column b
8.This is a widget L
8.This is a widget E
8.This is a widget M
8.This is a widget 3P
Here is what I'm doing on sheet 2, but sheet 1 can contain up to 500 rows...
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" L")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" E")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" M")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" 3P")
Regards.
I'm hoping for some advise on how to take the value in 1 cell of 1 row and convert it to a different sheet over 4 rows adding some constant text before and after the cell value.
For every row in Sheet1, column H (only if it contains data) I need to use the cell value and add a static value to it.
Sheet 1
Column H
This is a widget
Sheet 2
Column b
8.This is a widget L
8.This is a widget E
8.This is a widget M
8.This is a widget 3P
Here is what I'm doing on sheet 2, but sheet 1 can contain up to 500 rows...
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" L")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" E")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" M")
=IF(Worklist!H17="","","8."&Worklist!H17&"-"&Worklist!K17&" 3P")
Regards.