Skip to main content
Nintex Community Menu Bar
Question

Ui Only formula field AND""

  • July 10, 2024
  • 3 replies
  • 11 views

Forum|alt.badge.img+10

I am trying create a ui only checkbox field that takes a date field and sees if it falls in between a start and end date field. I believe the formula should be wrapped with “AND” however that doesn’t seem to be supported.

IF({{InvoiceDate}}>={{StartDate}},{{InvoiceDate}}<={{EndDate}}, 1,0) 

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+17

You could try a nested IF: IF({{InvoiceDate}}>={{StartDate}}, IF({{InvoiceDate}}<={{EndDate}}, 1,0), 0)


Forum|alt.badge.img+3

You can also use “&&” for AND as well as “||” for OR

Try this:
IF({{InvoiceDate}}>={{StartDate}}&&{{InvoiceDate}}<={{EndDate}}, 1,0) 


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

Thank you both. I went with Will’s answer but will keep both in mind for the future.