Forum Discussion
MarkT2551
Jun 16, 2023Copper Contributor
How to Combine Two columns into One
Column A
begin ConfiguredSIPBinding ConfiguredSIPBinding.
FaultMonitoringProfile FaultMonitoringProfile.1
ApplyFMPToRelatedObjectTypes {Subscriber SIP T...
SergeiBaklan
Jun 16, 2023Diamond Contributor
Perhaps like
=LET(
updateBlock, LAMBDA(template,value,
VSTACK(
TRIM(TAKE(template, 1)) & value,
DROP(template, 1)
)
),
REDUCE(
updateBlock(template, B1),
$B$2:INDEX(B:B, COUNTA(B:B) ),
LAMBDA(a,v, VSTACK(a, updateBlock(template, v)))
)
)
to
- MarkT2551Jun 16, 2023Copper ContributorYes Sir- Perfect!
Thank you very much!- SergeiBaklanJun 16, 2023Diamond Contributor
MarkT2551 , you are welcome
- MarkT2551Jun 16, 2023Copper ContributorLast question on this- If I need to change the data in column A to this...
begin ConfiguredSIPBinding ConfiguredSIPBinding.
FaultMonitoringProfile None
end
How would the formula look with the new information? I tried looking at what defined column A in your first response. It looks like it's part of a =template but I couldn't figure out how to edit the template or I was heading down the wrong path.