How To Make Formula in OmniScript

  — :  “In this post, we create a Date Formatter to showcase the date format. In the Formula field, establish a logic for the date format.”

Step :– 1  “We are creating an Omniscript with three text fields (for DD/MM/YYYY) and one formula field (to calculate the format).”

OmniScript
text field for input and formula field for calculate
				
					// in formula field 
IF(%Text1%>10,%Text1%,0+%Text1%),IF(%Text2%>10,%Text2%,0+%Text2%),IF(%Text3%>10,20+%Text3%,200+%Text3%)
				
			

 Step :– 2   On preview tab we pass date 

On Preview Tab
We find date format
Scroll to Top