Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to make sure the ones in green are lower case whiel skipping the Q.
I know its a nested fuicntion but not sure how to skip the first letter. total lenght is 37 digits including Q
Qc66e8037_1eb2_4b16_9b6d_18c9f2b44d73 |
I ended up doing this since the Q cant be left truncated I just add back on once the string is lowercase.
'Q'&Lower( Mid('Qc66e8037_1eb2_4b16_9b6d_18c9f2b44d73'),2,36) )
Look into the Lower() function.
and if you want to remove the first char, try mid(TEXT,2, 36).
So maybe combined like
=lower( mid( 'Qc66e8037_1eb2_4b16_9b6d_18c9f2b44d73', 2, 36))
I ended up doing this since the Q cant be left truncated I just add back on once the string is lowercase.
'Q'&Lower( Mid('Qc66e8037_1eb2_4b16_9b6d_18c9f2b44d73'),2,36) )
Thank you, I needed the Mid fucntion I was missing that..
I think you can simplify this to
Capitalize( 'Qc66e8037_1eb2_4b16_9b6d_18c9f2b44d73')