Skip to main content
Nintex Community Menu Bar

Use lookup can not output data filter on Number

  • July 22, 2018
  • 2 replies
  • 16 views

Forum|alt.badge.img+2

I use lookup to get data from List Part. 

When I use the below formula to display Description data from List Part. I find the below problem.

Formula Builder

lookup("Part","PartNo",PartNo,"Description")


I could get result when I  input string like "ssss" , But can not get anything when I typed number like "00010"

217154_pastedImage_2.png 217155_pastedImage_3.png

List Part:  column PartNo is Single line of text

217135_pastedImage_1.png   

2 replies

Forum|alt.badge.img+2
  • Author
  • July 23, 2018

UseRyan Duguid‌ provide 

lookup("Part","PartNo",toLower(PartNo),"Description")

 I remove the "0" before the number, this formula is working. in production environment, all PartNos do not start with 0


Forum|alt.badge.img+3

Been working on getting this to work for hours now. Thanks for providing the toLower solution happy.png