Regards,
I am trying to make the calculation of the sum of the current date + date selected using the formula DateDiff (Now (), DateValue ()).
Can someone help me with this error?
Attached reference image
Thank you!
If you want to get the selection from the date picker, you should use its SelectedDate property:
DateDiff( Now(), DatePicker1.SelectedDate )
Hope this helps!