Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have three dates: Supreme Case date, Appeal Case date, and Primary Case date. I want to create a logic that processes these dates as follows:
I implement this logic
if(Len(Trim([Supreme case No])) = 1
and Len(Trim([Appeal No])) = 1 or Len(Trim([Appeal No])) = 0
and Len(Trim(Primary_Decree_No)) = 1 or Len(Trim(Primary_Decree_No)) = 0,
Num(Interval(Supreme_Court_Date - Filling_Date,'DD')),Num(Interval(Supreme_Court_Date - Filling_Date,'DD')))
It could be simplified with alt() which returned the first numerical value. This may look like:
interval(alt(Date1, Date2, Date3) - Date4)