isThisQuarter
Modified on Tue, 22 Aug 2023
Description
Use this function to check if a given date falls within the same quarter as the current date. It returns true if the given date is in the same quarter as the current date, and false otherwise.
Syntax
isThisQuarter(date)
Returns
Return Value | Description |
---|---|
True/False | Returns true if the given date is in the same quarter as the current date, otherwise false. |
Sample
Example | Result | Description |
---|---|---|
isThisQuarter(2023-08-20) | true | August 20th, 2023, falls within the same quarter as the current date (Q3 2023), so the function returns true. |
isThisQuarter(2023-09-15) | false | September 15th, 2023, does not fall within the same quarter as the current date (Q3 2023), so the function returns false. |
To view all the Date functions, click here.
See Also
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article