How to check whether a date is more than 6 months or less than 6 months

How to check whether a date is more than 6 months or less than 6 months

Hi @sivapriya.s
use

Your Date > Now.ToString.AddMonths(6).ToString(“dd/MM/yyyy”) and Your Date< Now.ToString.AddMonths(-6).ToString(“dd/MM/yyyy”)

Thanks
Ashwin S

1 Like
(a.Date - b.Date).TotalDays

try this

DateCheck.xaml (6.1 KB)

Check this…! @sivapriya.s

Thanks