Skip to main content
Nintex Community Menu Bar
Question

Pre-populate field from merged two fields from other Models?

  • July 9, 2024
  • 3 replies
  • 21 views

Forum|alt.badge.img+5

I can easily pre-populate a field with a value from another model’s field using a condition.

Is it possible to use multiple fields to do the same thing? Example: Record Name = {{User Alias}} & {{TODAY’s DATE}}

Jacob

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+5
  • Author
  • July 9, 2024

Forum|alt.badge.img+17
  • Nintex Employee
  • July 9, 2024

You can use the getDate function for that.   And then use the JQuery datepicker “format” utility to parse the date in any way you need. (http://api.jqueryui.com/datepicker/)  


Forum|alt.badge.img+5
  • Author
  • July 9, 2024

$.datepicker.formatDate(‘dd/mm/yy’, new Date())

Perfect, Thanks!