Input will be 08/12/2022 i need to check that given input date is more than 6 months from today’s date
Hi @sruthesanju ,
Could you Check with the below Expression :
DateDiff(DateInterval.Month,DateTime.ParseExact("08/12/2022","MM/dd/yyyy",System.Globalization.CultureInfo.InvariantCulture).Date,Now.date)>6
Assumption : Format of date in input is MM/dd/yyyy
, you could change the format accordingly
Let us know if this isn’t the expected outcome.