Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-04-22 06:30 PM
Cordial Saludo
Quisiera saber como puedo obtener el primer Nombre de un Data item, el cual obtiene el nombre de cada uno de los clientes que son buscados en una pagina Web.
El nombre siempre cambia, por ende la cantidad de caracteres nunca va a ser la misma cantidad.
Data Item: Angie Xiomara Cardenas
Data Item: Martha Liliana velasquez
Quedo atenta,
Quisiera saber como puedo obtener el primer Nombre de un Data item, el cual obtiene el nombre de cada uno de los clientes que son buscados en una pagina Web.
El nombre siempre cambia, por ende la cantidad de caracteres nunca va a ser la misma cantidad.
Data Item: Angie Xiomara Cardenas
Data Item: Martha Liliana velasquez
Quedo atenta,
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-04-22 09:20 AM
Something like this should do it, where you find the position of the first space character and use that number to divide the text.
Left([Your Data Item], InStr([Your Data Item], " ") - 1)
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-04-22 09:20 AM
Something like this should do it, where you find the position of the first space character and use that number to divide the text.
Left([Your Data Item], InStr([Your Data Item], " ") - 1)
