• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Date function - End of Next quarter in VBA

Helo Team,

I’m looking for a formula in VBA for the below

I have a date in cell A2 (09/04/2020) mmddyyyy.
Based on my A2 value i need value in B2 to be the end of next quarter i.e., 12/31/2020

I used the below formula in excel
=EOMONTH(A2, 3+MOD(3-Month(A2),3)) and its successful, however i’m looking for the same in VBA. I need some formula which is equivalent to excel MOD

I tried DateSerial function, but it is not giving me the Date for end of the next quarter (I’m able to use current date + no.of months) but i need next quarter end date based on the current date
Below is the one for your reference.
DateSerial(Year(Range(“A2”)), Month(Range(“A2”)) + 4, 0)

Appreciate for your help. Thank you for the help.


E33CE274-9126-4B5F-B296-ECB2ED7FC685.jpeg
 
Thank you for the above link. I tried but not so lucky enough. Any help on the Next Quarter End formula in vba as explained in the above requirement please.

Appreciate your time and help/thought.
 
Back
Top