Unique Excel Date Query/Formula












0















Is it possible to pre-populate a date in a column after date in adjacent column is entered?



Here is what I have been tasked with:



If date is on or before (<=) the 6th of the month (e.g. 01/01/2019) then the pre-populated date should be 21st of the following month (+1 month) (e.g. 21/02/2019)



If date is after (>) the 6th of the month (e.g. 07/01/2019) then the pre-populated date should be 21st +2 months (e.g. 21/03/2019)



The pre-populated will always be start with the 21st day of the month.



Any help with this is greatly appreciated



Many thanks



RT










share|improve this question



























    0















    Is it possible to pre-populate a date in a column after date in adjacent column is entered?



    Here is what I have been tasked with:



    If date is on or before (<=) the 6th of the month (e.g. 01/01/2019) then the pre-populated date should be 21st of the following month (+1 month) (e.g. 21/02/2019)



    If date is after (>) the 6th of the month (e.g. 07/01/2019) then the pre-populated date should be 21st +2 months (e.g. 21/03/2019)



    The pre-populated will always be start with the 21st day of the month.



    Any help with this is greatly appreciated



    Many thanks



    RT










    share|improve this question

























      0












      0








      0








      Is it possible to pre-populate a date in a column after date in adjacent column is entered?



      Here is what I have been tasked with:



      If date is on or before (<=) the 6th of the month (e.g. 01/01/2019) then the pre-populated date should be 21st of the following month (+1 month) (e.g. 21/02/2019)



      If date is after (>) the 6th of the month (e.g. 07/01/2019) then the pre-populated date should be 21st +2 months (e.g. 21/03/2019)



      The pre-populated will always be start with the 21st day of the month.



      Any help with this is greatly appreciated



      Many thanks



      RT










      share|improve this question














      Is it possible to pre-populate a date in a column after date in adjacent column is entered?



      Here is what I have been tasked with:



      If date is on or before (<=) the 6th of the month (e.g. 01/01/2019) then the pre-populated date should be 21st of the following month (+1 month) (e.g. 21/02/2019)



      If date is after (>) the 6th of the month (e.g. 07/01/2019) then the pre-populated date should be 21st +2 months (e.g. 21/03/2019)



      The pre-populated will always be start with the 21st day of the month.



      Any help with this is greatly appreciated



      Many thanks



      RT







      microsoft-excel worksheet-function microsoft-excel-2010






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 23 at 11:56









      RockTaylorRockTaylor

      1




      1






















          3 Answers
          3






          active

          oldest

          votes


















          4














          This is pretty straightforward using the date functions.



          enter image description here



          Note that I'm in the US, so my dates are MM/DD/YYYY. I've added a December date so you can see how Excel intelligently handles the year if the month goes beyond 12. The formula in B1:



          =DATE(YEAR(A1),MONTH(A1)+IF(DAY(A1)>6,2,1),21)


          DATE() lets you specify a date by entering the year, month, and day. The target day is always the 21st day of the month. The year is taken as the year of the source date. All of the action happens with the month specification. We start with the month of the source date, then add either 1 or 2 months based on whether the source day is greater than 6. The logic is very human readable and follows what you described in the question.






          share|improve this answer
























          • More elegant than mine.

            – Mark Fitzgerald
            Jan 23 at 12:38











          • @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

            – fixer1234
            Jan 23 at 12:41



















          1














          If your date was in Cell A1 then this formula in any other cell in row 1 will work:



          =IF(DAY(A1)>6,DATE(YEAR(A1),MONTH(A1)+2,21),DATE(YEAR(A1),MONTH(A1)+1,21))


          Copy down as required.






          share|improve this answer































            1














            I prefer the IF function as its clearer to read and understand what is going on, but as an alternative you could use the following:



            =DATE(YEAR(A1),MONTH(A1)+1+(DAY(A1)>6),21)


            The (DAY(A1)>6) will return either TRUE or FALSE. When this is sent through a math operation, in this case addition, it will be converted to 1 for TRUE and 0 for FALSE.






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397433%2funique-excel-date-query-formula%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              4














              This is pretty straightforward using the date functions.



              enter image description here



              Note that I'm in the US, so my dates are MM/DD/YYYY. I've added a December date so you can see how Excel intelligently handles the year if the month goes beyond 12. The formula in B1:



              =DATE(YEAR(A1),MONTH(A1)+IF(DAY(A1)>6,2,1),21)


              DATE() lets you specify a date by entering the year, month, and day. The target day is always the 21st day of the month. The year is taken as the year of the source date. All of the action happens with the month specification. We start with the month of the source date, then add either 1 or 2 months based on whether the source day is greater than 6. The logic is very human readable and follows what you described in the question.






              share|improve this answer
























              • More elegant than mine.

                – Mark Fitzgerald
                Jan 23 at 12:38











              • @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

                – fixer1234
                Jan 23 at 12:41
















              4














              This is pretty straightforward using the date functions.



              enter image description here



              Note that I'm in the US, so my dates are MM/DD/YYYY. I've added a December date so you can see how Excel intelligently handles the year if the month goes beyond 12. The formula in B1:



              =DATE(YEAR(A1),MONTH(A1)+IF(DAY(A1)>6,2,1),21)


              DATE() lets you specify a date by entering the year, month, and day. The target day is always the 21st day of the month. The year is taken as the year of the source date. All of the action happens with the month specification. We start with the month of the source date, then add either 1 or 2 months based on whether the source day is greater than 6. The logic is very human readable and follows what you described in the question.






              share|improve this answer
























              • More elegant than mine.

                – Mark Fitzgerald
                Jan 23 at 12:38











              • @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

                – fixer1234
                Jan 23 at 12:41














              4












              4








              4







              This is pretty straightforward using the date functions.



              enter image description here



              Note that I'm in the US, so my dates are MM/DD/YYYY. I've added a December date so you can see how Excel intelligently handles the year if the month goes beyond 12. The formula in B1:



              =DATE(YEAR(A1),MONTH(A1)+IF(DAY(A1)>6,2,1),21)


              DATE() lets you specify a date by entering the year, month, and day. The target day is always the 21st day of the month. The year is taken as the year of the source date. All of the action happens with the month specification. We start with the month of the source date, then add either 1 or 2 months based on whether the source day is greater than 6. The logic is very human readable and follows what you described in the question.






              share|improve this answer













              This is pretty straightforward using the date functions.



              enter image description here



              Note that I'm in the US, so my dates are MM/DD/YYYY. I've added a December date so you can see how Excel intelligently handles the year if the month goes beyond 12. The formula in B1:



              =DATE(YEAR(A1),MONTH(A1)+IF(DAY(A1)>6,2,1),21)


              DATE() lets you specify a date by entering the year, month, and day. The target day is always the 21st day of the month. The year is taken as the year of the source date. All of the action happens with the month specification. We start with the month of the source date, then add either 1 or 2 months based on whether the source day is greater than 6. The logic is very human readable and follows what you described in the question.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jan 23 at 12:35









              fixer1234fixer1234

              18.9k144982




              18.9k144982













              • More elegant than mine.

                – Mark Fitzgerald
                Jan 23 at 12:38











              • @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

                – fixer1234
                Jan 23 at 12:41



















              • More elegant than mine.

                – Mark Fitzgerald
                Jan 23 at 12:38











              • @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

                – fixer1234
                Jan 23 at 12:41

















              More elegant than mine.

              – Mark Fitzgerald
              Jan 23 at 12:38





              More elegant than mine.

              – Mark Fitzgerald
              Jan 23 at 12:38













              @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

              – fixer1234
              Jan 23 at 12:41





              @MarkFitzgerald, great minds think alike. :-) Our formulas are almost the same and it looks like we were both writing answers at the same time.

              – fixer1234
              Jan 23 at 12:41













              1














              If your date was in Cell A1 then this formula in any other cell in row 1 will work:



              =IF(DAY(A1)>6,DATE(YEAR(A1),MONTH(A1)+2,21),DATE(YEAR(A1),MONTH(A1)+1,21))


              Copy down as required.






              share|improve this answer




























                1














                If your date was in Cell A1 then this formula in any other cell in row 1 will work:



                =IF(DAY(A1)>6,DATE(YEAR(A1),MONTH(A1)+2,21),DATE(YEAR(A1),MONTH(A1)+1,21))


                Copy down as required.






                share|improve this answer


























                  1












                  1








                  1







                  If your date was in Cell A1 then this formula in any other cell in row 1 will work:



                  =IF(DAY(A1)>6,DATE(YEAR(A1),MONTH(A1)+2,21),DATE(YEAR(A1),MONTH(A1)+1,21))


                  Copy down as required.






                  share|improve this answer













                  If your date was in Cell A1 then this formula in any other cell in row 1 will work:



                  =IF(DAY(A1)>6,DATE(YEAR(A1),MONTH(A1)+2,21),DATE(YEAR(A1),MONTH(A1)+1,21))


                  Copy down as required.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 23 at 12:37









                  Mark FitzgeraldMark Fitzgerald

                  4021311




                  4021311























                      1














                      I prefer the IF function as its clearer to read and understand what is going on, but as an alternative you could use the following:



                      =DATE(YEAR(A1),MONTH(A1)+1+(DAY(A1)>6),21)


                      The (DAY(A1)>6) will return either TRUE or FALSE. When this is sent through a math operation, in this case addition, it will be converted to 1 for TRUE and 0 for FALSE.






                      share|improve this answer




























                        1














                        I prefer the IF function as its clearer to read and understand what is going on, but as an alternative you could use the following:



                        =DATE(YEAR(A1),MONTH(A1)+1+(DAY(A1)>6),21)


                        The (DAY(A1)>6) will return either TRUE or FALSE. When this is sent through a math operation, in this case addition, it will be converted to 1 for TRUE and 0 for FALSE.






                        share|improve this answer


























                          1












                          1








                          1







                          I prefer the IF function as its clearer to read and understand what is going on, but as an alternative you could use the following:



                          =DATE(YEAR(A1),MONTH(A1)+1+(DAY(A1)>6),21)


                          The (DAY(A1)>6) will return either TRUE or FALSE. When this is sent through a math operation, in this case addition, it will be converted to 1 for TRUE and 0 for FALSE.






                          share|improve this answer













                          I prefer the IF function as its clearer to read and understand what is going on, but as an alternative you could use the following:



                          =DATE(YEAR(A1),MONTH(A1)+1+(DAY(A1)>6),21)


                          The (DAY(A1)>6) will return either TRUE or FALSE. When this is sent through a math operation, in this case addition, it will be converted to 1 for TRUE and 0 for FALSE.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 23 at 13:18









                          Forward EdForward Ed

                          834214




                          834214






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Super User!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397433%2funique-excel-date-query-formula%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...