Hello Carnifex930,
Welcome to the Forum!
I think this what you are after. This macro is a User Defined Function. It works similarly to a worksheet function. It will create the new text using the cells and the number of spaces you provide. Copy this code into a VBA module.
NOTE: Changing the values of either cell will not change the UDF result. If you need this to happen, let me know.
Function ParseText(ByVal Spaces_To_Add As Integer, Cell1, Cell2)
ParseText = Cell1 & Space(Spaces_To_Add) & Cell2
ActiveCell.Offset(1, 0).Select
End Function
UDF Example
'In Cell E4
=ParseText(10,E1,E2)
'Results - Displays E1 and E2 with 10 spaces in between
Adding the Macro- Copy the macro above pressing the keys CTRL+C
- Open your workbook
- Press the keys ALT+F11 to open the Visual Basic Editor
- Press the keys ALT+I to activate the Insert menu
- Press M to insert a Standard Module
- Paste the code by pressing the keys CTRL+V
- Make any custom changes to the macro if needed at this time.
- Save the Macro by pressing the keys CTRL+S
- Press the keys ALT+Q to exit the Editor, and return to Excel.
Bookmarks