EXCEL If cell x is empty fill cell y with cell z











up vote
0
down vote

favorite












If cell x from worksheet 1 is empty, fill cell y in worksheet 2 with cell z from worksheet 1



***If customer PO No (worksheet 1) is empty then use Quote No (worksheet 1) to fill Quote/PO No (worksheet 2)



WORKSHEET1



WORKSHEET2










share|improve this question









New contributor




Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    0
    down vote

    favorite












    If cell x from worksheet 1 is empty, fill cell y in worksheet 2 with cell z from worksheet 1



    ***If customer PO No (worksheet 1) is empty then use Quote No (worksheet 1) to fill Quote/PO No (worksheet 2)



    WORKSHEET1



    WORKSHEET2










    share|improve this question









    New contributor




    Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      If cell x from worksheet 1 is empty, fill cell y in worksheet 2 with cell z from worksheet 1



      ***If customer PO No (worksheet 1) is empty then use Quote No (worksheet 1) to fill Quote/PO No (worksheet 2)



      WORKSHEET1



      WORKSHEET2










      share|improve this question









      New contributor




      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      If cell x from worksheet 1 is empty, fill cell y in worksheet 2 with cell z from worksheet 1



      ***If customer PO No (worksheet 1) is empty then use Quote No (worksheet 1) to fill Quote/PO No (worksheet 2)



      WORKSHEET1



      WORKSHEET2







      microsoft-excel worksheet-function






      share|improve this question









      New contributor




      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited Nov 14 at 11:48









      Ahmed Ashour

      986610




      986610






      New contributor




      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Nov 14 at 10:54









      Danielle

      31




      31




      New contributor




      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Danielle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          Use following formula in cell Y of sheet 2



          =IF(Sheet1!B1="",Sheet1!B2,"")


          Sheet1 B1 is X



          Sheet1 B2 is Z






          share|improve this answer










          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
            – Danielle
            Nov 14 at 11:46






          • 1




            =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
            – Danielle
            Nov 14 at 11:47











          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',
          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
          });


          }
          });






          Danielle is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1375274%2fexcel-if-cell-x-is-empty-fill-cell-y-with-cell-z%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          Use following formula in cell Y of sheet 2



          =IF(Sheet1!B1="",Sheet1!B2,"")


          Sheet1 B1 is X



          Sheet1 B2 is Z






          share|improve this answer










          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
            – Danielle
            Nov 14 at 11:46






          • 1




            =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
            – Danielle
            Nov 14 at 11:47















          up vote
          1
          down vote



          accepted










          Use following formula in cell Y of sheet 2



          =IF(Sheet1!B1="",Sheet1!B2,"")


          Sheet1 B1 is X



          Sheet1 B2 is Z






          share|improve this answer










          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
            – Danielle
            Nov 14 at 11:46






          • 1




            =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
            – Danielle
            Nov 14 at 11:47













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          Use following formula in cell Y of sheet 2



          =IF(Sheet1!B1="",Sheet1!B2,"")


          Sheet1 B1 is X



          Sheet1 B2 is Z






          share|improve this answer










          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          Use following formula in cell Y of sheet 2



          =IF(Sheet1!B1="",Sheet1!B2,"")


          Sheet1 B1 is X



          Sheet1 B2 is Z







          share|improve this answer










          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited Nov 14 at 11:49









          Ahmed Ashour

          986610




          986610






          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered Nov 14 at 11:12









          Swapnil

          264




          264




          New contributor




          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Swapnil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
            – Danielle
            Nov 14 at 11:46






          • 1




            =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
            – Danielle
            Nov 14 at 11:47


















          • Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
            – Danielle
            Nov 14 at 11:46






          • 1




            =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
            – Danielle
            Nov 14 at 11:47
















          Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
          – Danielle
          Nov 14 at 11:46




          Thank you, I also needed to add that it should use Sheet!B1 if not empty but I think I worked that part out...
          – Danielle
          Nov 14 at 11:46




          1




          1




          =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
          – Danielle
          Nov 14 at 11:47




          =IF(ISBLANK(Sheet!B1),Sheet!B2,Sheet!B1)
          – Danielle
          Nov 14 at 11:47










          Danielle is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          Danielle is a new contributor. Be nice, and check out our Code of Conduct.













          Danielle is a new contributor. Be nice, and check out our Code of Conduct.












          Danielle is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1375274%2fexcel-if-cell-x-is-empty-fill-cell-y-with-cell-z%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

          How do I know what Microsoft account the skydrive app is syncing to?

          Grease: Live!

          When does type information flow backwards in C++?