I recently revamped my new team's process from Google Sheets to Smartsheets and everything was peachy keen until I tried to transpose the last, painful formula. The purpose of this column is for my staff to have a quick & easy way to copy the relevant details of the row from one cell to a Jira ticket (my company does not allow the Jira Connector).
Can someone please look this over and let me know why I'm getting a syntax and/or #paresable error when trying to make this a column formula? As you can imagine, just the act of drafting this formula before attempting it was painful enough...lol.
=if([Request Type]@row="New Alarm","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10)&"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Proposed Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Projected HR: "&[Projected HR]@row&char(10) &"Projected Vol: "&[Projected Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row,
if([Request Type]@row="Modify Alarm","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) &"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Current Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Current HR: "&[Current HR]@row&char(10) &"Current Vol: "&[Current Volume]@row&char(10) &"Projected HR: "&[Projected HR]@row&char(10) &"Projected Vol: "&[Projected Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row,
if([Request Type]@row="Analysis (General)","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) & "INTAKE#: "&[SS ID]@row,
if([Request Type]@row="Analysis (Alarm)","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) &"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Current Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Current HR: "&[Current HR]@row&char(10) &"Current Vol: "&[Current Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row,
if([Request Type]@row="Reactivate Alarm","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) &"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Current Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Projected HR: "&[Projected HR]@row&char(10) &"Projected Vol: "&[Projected Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row,
if([Request Type]@row="Retire Alarm","User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) &"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Current Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Current HR: "&[Current HR]@row&char(10) &"Current Vol: "&[Current Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row,
"User: "&[Requestor]@row&char(10) &"Priority: "&[Urgency]@row&char(10) &"LOB: "&[LOB]@row&char(10) &"Channel: "&[Channel]@row&char(10) &"Request: "&[Request Type]@row&char(10) &"Problem Statement: "&[Problem Description]@row&char(10) &"Alarm Name: "&[Alarm Name]@row&char(10) &"Alarm Description: "&[Current Alarm Description]@row&char(10) &"Alarm Type: "&[Alarm Type]@row&char(10) &"Projected HR: "&[Projected HR]@row&char(10) &"Projected Vol: "&[Projected Volume]@row&char(10) & "INTAKE#: "&[SS ID]@row))))))
THANK YOU!