Hi all, I am hoping to get some assistance for prepending an ID for a form. So in my examples, I have a field called Form ID where the formula is:
If(SharePointForm1.Mode = FormMode.New, Last('IRF Center').ID + 1,Parent.Default)
This gets me what I am looking for which is the ID of the last form submitted +1.
Where I need assistance is I want to prepend all of the Form ID's with "IRF-" so instead of returning just the number, it will be "IRF-1", etc. I feel like there should be a concat in there, but have no idea how that would work. Can anyone help me?