answersLogoWhite

0

MS Excel does not have the ability to selectively print odd or even pages. You need to use the function on your printer for that option. When you print from Excel, instead of just clicking the print button, select print and click on the printer PROPERTIES button. If your printer has the ability to selectively print odd or even pages, you will select that option according to your printer's specifications.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you print out a pdf document back and front?

As with any document format with multiple pages, one would first command the printer to print only the 'odd' pages. Then after inserting those pages back into the paper feed properly command the printer to print only the 'even' pages. Voila!!


What are odd pages?

The odd pages are just the pages that don't have even numbers... every other one. So, pages 2 and 4 are even, and pages 3 and 5 would be odd pages, because they are numbered with odd numbers. :) You could also say that pages are odd if there is something odd about them, for instance size or printer errors. But in general when someone says "odd pages" they will mean the odd numbered ones.


What are odd and even pages?

Odd and even pages refer to the numbering of pages in a book or document. Odd pages are those that have an odd number (1, 3, 5, etc.), while even pages have an even number (2, 4, 6, etc.). In printed materials, odd pages typically appear on the right side of an opened book, and even pages appear on the left side. This distinction is important for layout, design, and navigation in both physical and digital formats.


How to print back to back on A4 paper?

To print back to back on A4 paper, first ensure your printer supports duplex printing. In the print settings, select the "Print on both sides" or "Duplex" option. If your printer does not have automatic duplexing, print the odd pages first, then manually reinsert the pages to print the even pages. Be sure to adjust the page orientation and print alignment as needed to ensure proper alignment.


What two consecutive pages in a book would total 600?

One of two consecutive pages must be odd and the other even. Odd + Even = Odd But 600 is even. So there is no solution to the question.


What is an odd numbered page called?

Recto is the word for odd numbered (right-hand) pages. Verso is for even pages (left-hand).


How do you print double sides with Brother DCP-J315W?

To print double-sided (duplex) with the Brother DCP-J315W, first ensure you have the correct driver installed and your document ready. In the print dialog, select "Print on Both Sides" or "Duplex Printing" option, depending on your operating system. If your printer doesn't automatically print on both sides, you may need to print the odd pages first, then reinsert the paper to print the even pages. Always refer to the user manual for specific instructions related to your model.


Write the program witch show that the number is even or odd?

In BASIC: 10 INPUT X: IF X = 999 THEN STOP ELSE PRINT X; 20 IF X/2 = INT(X/2) THEN PRINT "EVEN" ELSE PRINT "ODD" 30 GOTO 10


How many odd numbered pages in 356 pages?

178 odd numbered pages in 356 pages.


What allows you to print on both sides of the paper?

# On the File menu, click Print # In the lower-left corner of the Print dialog box, in the Print box, click Odd pages (should be on All pages in range) # Click OK # After the odd pages are printed, flip the stack of pages over, and then in the Print dialog box, click Even pages # Click OKhttp://office.microsoft.com/en-us/word/HP011543871033.aspx


The number of odd-numbered pages in a book of 365 pages is?

183 odd pages.


Program for check a number is even or odd using PYTHON language?

This program checks whether a number is odd or even. NOTE: This site removes formatting from answers. Replace (tab) with a tab or four spaces. #!/usr/bin/python print("Type a number.") n = input(": ") l = len(n)-1 even = ("02468") if n[l] in even: (tab)print(n, "is even.") if n[l] not in even: (tab)print(n, "is odd.")