Can someone provide another formula idea to combine to two columns together? I would need the final result to be 060-MIL. I normally use the formula shown, but wondering if there is an easier one. Thank you.
Probably the simplest is the dynamic array version of the OP formula
Code:
= pricingType & "-" & customerGroup
My favourite would be @pascal's Combo4 solution. Maybe taking it a step further to using a named lambda function in place of the inbuilt function TEXTJOIN
Code:
= BYROW(descriptors, TextJoinλ)
where
TextJoinλ
=LAMBDA(a, TEXTJOIN("-", , a))