Need to get correct formula/function to execute the following:
PREFIX: PKS-
Name Column: JOHN DOE
ID Column: 00123456
Desired Formula Output: PKS-jd-00123456
Here is what I have currently:
="PKS-" + LOWER(Name204) + "-" + ID204 and the output is: PKS-john doe-00123456
OR
="PKS-" + LOWER(LEFT(Name204) + "-" + ID204) and the output is PKS-j-00123456