How to take values ​​from a list and put them in text boxes according to a selected value?

  • 3 August 2021
  • 7 replies
  • 13 views

Buenos días, soy originario de México, disculpe mi inglés porque estoy usando una herramienta de traducción.

Estoy aprendiendo a utilizar nintex form junto con SharePoint.

 

Tengo una lista en SharePoint llamada States que tiene los campos KeyStates y Description, y esta lista se agrega en una columna de búsqueda de Sharepoint que me muestra los datos de la columna KeyStates, pero en mi formulario nintex, quiero El momento en que el usuario selecciona una contraseña de estado, la descripción de dicha contraseña aparece automáticamente en un campo de texto o cualquier otro.

 

¿Cómo puedo resolver esto?

 

Catálogo de estados

19033iB1102AD0EF42C8BA.png

 

Lista de SharePoint donde se almacena todo

19034iF488B4857B16291E.png

 

Forma nintex

19035i95FE256644B4681E.png

 

 


7 replies

Badge +11

@JonathanGarcia 


 


You have to use a calculated value. For example: 


lookup("Listname","ID",Claveestado,"Descripcion")


 



 

Aldo am I doing wrong that I can't decipher?


I am doing it as follows, I run it and it does not work


"Estados" -> Sharepoint List.


"Title" -> ID or KeyState field of the Sharepoint list


"IDEstado" -> List where the user will select the value to filter


"Descripcion" -> Sharepoint States list field field


 



 


List - Estados



IDEstado is selection and takes the values ​​from the Estados list



 


 

Badge +11

@JonathanGarcia Prueba ID en vez de Title:


 


lookup("Estados","ID",IDEstado,"Descripcion")

Sigue sin funcionar.



 


Coloco el Title ya que asi es el nombre del campo en la lista o catalogo de Estados



 


 


 

Badge +11

Esta muy raro. Donde esta tu lista Estados?


Is your list Estados in the same Site?


 


Presiona F12 para ver que errores te salen.


 


*list title-Title of list containing data for query.


*column to filter on- Name of the column in the list that you want to filter on. Specifically, this column will be used to filter which list items are treated as matches against the third parameter.


*value to filter on-The value you specify for this parameter is compared against each item in the list, if it matches the value for the column you specify in the second parameter, the list item data is returned.


*output column-The name of the column in the list that you want to get data from. Data from the output column is returned in the formula.

Son dos listas y estan en sharepoint.


 


una llamada Prueba Nintex que es donde se almacenara todo los registros del usuarios


y otra llamada Estados, que viene siendo el catalogo de estados



 

Badge +11

@JonathanGarcia  Play around , it  works for me.


 


lookup("Estados","ID",IDEstado,"Descripcion")


 


lookup('Estados','ID',IDEstado,'Descripcion')

Reply