how can I concatenate the Values in Cells B1:K1
to receive the string in A1
. Empty cells should be omitted. Is this possible using Excel commands or only with vba?
相关问题
- Removing duplicate dataframes in a list
- Excel sunburst chart: Some labels missing
- Django distinct is not working
- Error handling only works once
- Excel formula in VBA code
相关文章
- Get column data by Column name and sheet name
- ruby - simplify string multiply concatenation
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- How to prevent excel from truncating numbers in a
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- What's the easiest way to create an Excel tabl
If you have Office 365 Excel then you can use an Array form of TEXTJOIN:
Being an array it needs to be confirmed with Ctrl-Shift-Enter instead of Enter when exiting edit mode.
If you do not have office 365 Excel you will need vba. This UDF will mimic the TEXTJOIN. Put it in a module attached to the workbook and use the formula as described above.