I am using the below query to filter the items that are going to expire in < 90 days by subtracting its Expiry date with the current time.
| where ExpiryDate_s = ((todatetime(ExpiryDate_s) - now()) < (90d))
The query is not working as expected though it is printing the expired results as well.
For Example:
I have the below results in the ExpiryDate_s column
I need the output only the items which are going to expire in < 90 days. In this case
Am I missing something here? Any suggestions would be greatly appreciated.
you could try something like this:
-->