About 26,600,000 results
Open links in new tab
  1. Creating a chart in Excel that ignores #N/A or blank cells

    I believe that excel ignores blanks by default (see 'Hidden and empty cells' submenu under 'Select Data Source'). As for the #N/A, can you just make your chart from a derived column, where you use …

  2. How to represent a DateTime in Excel - Stack Overflow

    What is the best way of representing a DateTime in Excel? We use Syncfusions Essential XlsIO to output values to an Excel document which works great. But I can't figure out how to display a DateTim...

  3. What are the RGB codes for the Conditional Formatting 'Styles' in Excel ...

    I've got some cells that I have Conditionally Formatted to Excel's standard 'Bad' Style (Dark red text, light red fill). In another column I have cells that I have created a Conditional Formatting formula for. I …

  4. Excel formula to get cell color [duplicate] - Stack Overflow

    I would like to know if we can find out the Color of the CELL with the help of any inline formula (without using any macros) I'm using Home User Office package 2010.

  5. How do I convert a column of text URLs into active hyperlinks in Excel ...

    I have a column in excel, wherein I have all the website url values. My question is I want to turn the url values to active links. There are about 200 entries in that column with different urls in ...

  6. Parsing an ISO8601 date/time (including TimeZone) in Excel

    I need to parse an ISO8601 date/time format with an included timezone (from an external source) in Excel/VBA, to a normal Excel Date. As far as I can tell, Excel XP (which is what we're using) does...

  7. Referencing value in a closed Excel workbook using INDIRECT?

    In the formula, E:\Excel file\ is the full file path of the unopened workbook, test.xlsx is the name of the workbook, Sheet2 is the sheet name which contains the cell value you need to reference from, and …

  8. automatically execute an Excel macro on a cell change

    How can I automatically execute an Excel macro each time a value in a particular cell changes? Right now, my working code is: Private Sub Worksheet_Change(ByVal Target As Range) If Not Inters...

  9. excel - How to use workbook.saveas with automatic Overwrite - Stack ...

    In this section of code, Excel ALWAYS prompts: "File already exists, do you want to overwrite?" Application.DisplayAlerts = False Set xls = CreateObject("Excel.Application") Set wb = xls.Workbooks...

  10. vba - How to wait until ActiveWorkbook.RefreshAll finishes before ...

    After my macro refresh's the data that Excel is getting, I added into my macro the line "Calculate" (normally used to recalculate the workbook if you have set calculation to manual). While I don't need …