Aug 11 2022 05:51 AM
hi
i have a column in sharepoint list in format "CAN-DOM-2022-001"
now i want to create another column which extracts the the last 3 digit of the data like
"001"
how can i do using a calculated column in sharepoint list
Aug 11 2022 06:37 AM
@Battu1984 Try using formula like below in calculated column:
=RIGHT([Column 1],3)
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Aug 11 2022 06:52 AM
Solution@Battu1984 Security validation of page is expired - you must have kept this page open for longer time.
Try this:
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Jan 30 2024 07:34 AM
What about if you need to split more than once. see my example below for what I want to do.
code (needs splitting) | Con | Site | Build | Room | Equip |
R | R | ||||
R-BRMP01 | R | BRMP01 | |||
R-BRMP01-BR001 | R | BRMP01 | BR001 | ||
R-BRMP01-BR001/700000704 | R | BRMP01 | BR001 | 700000704 | |
R-BRMP01-BR001-L0-001 | R | BRMP01 | BR001 | L0-001 | |
R-BRMP01-BR001-L0-001/700005253 | R | BRMP01 | BR001 | L0-001 | 700005253 |
What I have sort of working.
Equip | IFERROR(RIGHT([@code],LEN([@code])-FIND("/",[@code])),"") |
Room | ??? |
Build | ??? |
Site | IFERROR(LEFT(RIGHT([@code],LEN([@code])-FIND("-",[@code])),FIND("-",RIGHT([@code],LEN([@code])-FIND("-",[@code])))-1),"") |
Contract | IFERROR(LEFT([@code]),"") |
Aug 11 2022 06:52 AM
Solution@Battu1984 Security validation of page is expired - you must have kept this page open for longer time.
Try this:
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.