Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by 1726

  1. 1726

    COUNTIF() with spaces

    There is also an RTRIM function which removes trailing spaces Cheers
  2. 1726

    2016 Excel Buttons Resizing Themselves

    Matt "the buttons naturally disappear as I scroll down" I tend to put such buttons in the Freeze Panes region so that they stay on the screen. Not an answer to your original problem but hope you find this of use. Cheers
  3. 1726

    Powerpoint: Linking to the previous slide I was in

    Use an Action rather than a Hyperlink. (Next to Hyperlink on Insert Ribbon) The Hyperlink option in Actions includes "Last Viewed Slide" A more obscure option can be achieved using Custom Slide Shows. A normal Hyperlink to a Custom Slide Show can be set to automatically set the calling slide...
  4. 1726

    Create Word Field w/Default Text - replaced on text entry

    Use: Insert > Quick Parts > Field Select: MacroButton field Click: Field Codes Button Replace: 1st parameter with None - this is a non-existent name of a macro to run when the field is clicked! Add: a second parameter which will act as the on screen prompt. e.g. Enter Your Name Back in the...
  5. 1726

    Excel 2013 / 2010 Conditional Formatting

    You can control the Colours used to display the spreadsheet in both versions of Excel: Look at: File, Options, Save Here you will find the section entitled: Preserve visual appearance of the Workbook Cheers
  6. 1726

    Tricky dynamic counting in Excel

    Oops - major typo in formula!! Try SUM(IF(B1:H1=B52:H52,1,0)) Sorry!
  7. 1726

    Tricky dynamic counting in Excel

    Use an Array Formula: =SUM(B1:H1=B52:H52,1,0) To enter an array formula press Shift+Ctrl+Enter in place of the normal Enter key Formula bar will show {=SUM(B1:H1=B52:H52,1,0)} - typing the brackets will not work Array formulas allow you to perform multiple calculations - i.e. compare...
  8. 1726

    Referenceing data in another sheet not working

    You may have manual recalculation turned on If so pressing F9 will force a manual recalculation and should give the correct results. Unless there is a good reason for manual calculation you can turn on automatic recalculation using the Calculation Options in the Formulas tab in the Ribbon. Cheers
  9. 1726

    change colour of a total cell from True or False

    Assuming your data starts in row 2. Select cells in column V from V2 onwards Set conditional formula of: =X2 Excel will automatically adjust the cell reference for each cell in the selection. This formula is in itself a condition - provided the data stored in column X are logical values -...
  10. 1726

    Excel 2013: Select all data but there's only 1 line

    Select region at active cell expands current selection to select a range bordered on all sides with blank rows/columns - or edge of spreadsheet. This will work with a single filled cell. Keyboard: Ctrl * However if you use the * on the main keyboard you may need to use: keyboard: Shift...
  11. 1726

    Division formual

    A more advanced formula which will detect if the division is possible or not would be: =IF(ISERROR(B2/$I$12),"",B2/$I$12) This detects if the division creates an error, if it does it leaves the cell blank, if not it performs the calculation. You could replace "" with a zero, or enter an error...
  12. 1726

    Division formual

    Use: =B2/$I$12 in F2 then copy down column. the Sum function is not required for simple arithmetic. The $ symbols create an Absolute cell reference which is not changed when the formula is copied/filled to other cells. cheers
  13. 1726

    Excel Filtering & Sheet Protection

    When activating worksheet protection select: Use AutoFilter in the Sheet Protection dialog box cheers
  14. 1726

    Publisher 2003 access problem to all pages in document

    Try: Menu Bar: View, Status Bar On/off toggle for the page selection symbols at foot of screen. Cheers
  15. 1726

    Excel Formula to display all characters after the minus sign

    Try: =RIGHT(A2,LEN(A2)-FIND("-",A2)) This will return all the characters after the first - character. cheers

Part and Inventory Search

Back
Top