To combine your two formulas while ensuring that leading zeros are preserved, you can modify your first formula to incorporate the TEXT function from your second formula. Here’s how you can do it:
=TEXT('Converter Tab'!A16, "00") & "-" & TEXT('Converter Tab'!B16, "0") & "-" & TEXT('Converter Tab'!C16, "0") & "-" & TEXT('Converter Tab'!D16, "00000") & "-" & TEXT('Converter Tab'!E16, "0000")
This formula will concatenate the values from the specified cells in the 'Converter Tab', while applying the TEXT function to each cell to format them with leading zeros as specified.
Make sure to replace A16, B16, C16, D16, and E16 with the appropriate cell references if they differ in your actual spreadsheet.
References: