Skip to main content
Question

KPI-CARD

  • May 23, 2023
  • 2 replies
  • 1 view

 

Hey guys,

 

I would like to transform the access user in Celonis (user.celonis@outlook.com) into just the name. Example: User Celonis

I looked in the PQL documentation but I couldn't find it.I looked in the PQL documentation but I couldn't find it.

2 replies

abhishek.chatu14
Level 11
Forum|alt.badge.img+4

I don't think there is a direct method or function to do this, however you can try the following

 

STRING_SPLIT ( 'celonis.user@gmail.com', '.', 0) || ' ' ||

STRING_SPLIT(STRING_SPLIT ( 'celonis.user@gmail.com', '.', 1),'@',0)

 

image


I don't think there is a direct method or function to do this, however you can try the following

 

STRING_SPLIT ( 'celonis.user@gmail.com', '.', 0) || ' ' ||

STRING_SPLIT(STRING_SPLIT ( 'celonis.user@gmail.com', '.', 1),'@',0)

 

image

Very good, thank you Abhishek. Another question, would it be possible to put the first letter in uppercase?