function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jax.ax1308Jax.ax1308 

Combining screen inputs

Hellow everyone,

 

I am trying to combine screen inputs so that I can add the first+last as the Account and Opportunty name. 

 

I have completed this using Varibles but I can't figure out how to add the space. It ends up as FirstLast not First Last. 

 

Thank you in advance for your help. 

 

 

Best Answer chosen by Admin (Salesforce Developers) 
RajaramRajaram
So you have 2 screen input fields and want to use that to create an account record formatted as "first last"?
If so, you actually dont need any variables at all. In the record create element when setting the name field just say {!ScreenFirstName} {!ScreenLastName}.

All Answers

RajaramRajaram
So you have 2 screen input fields and want to use that to create an account record formatted as "first last"?
If so, you actually dont need any variables at all. In the record create element when setting the name field just say {!ScreenFirstName} {!ScreenLastName}.
This was selected as the best answer
Jax.ax1308Jax.ax1308

Thanks, That fixed it!  

 

RajaramRajaram
Could you please click on the "Accept as Solution" to my post so that people can know there is a simple solution?
Thanks