About 4,230,000 results
Open links in new tab
  1. What does <> mean in excel? - Stack Overflow

    Sep 28, 2014 · What does <> mean in excel? [duplicate] Asked 14 years, 4 months ago Modified 11 years, 1 month ago Viewed 181k times

  2. What does '$' mean in Excel formula? e.g: $B$4 - Stack Overflow

    13 The $ sign causes the cell column or row or both in a formula to be fixed. That is, if you drag the formula cell horizontally or vertically in order to copy the formula, Excel will not adjust this …

  3. What does -- do in Excel formulas? - Stack Overflow

    Jul 20, 2010 · Boolean values TRUE and FALSE in excel are treated as 1 and 0, but we need to convert them. To convert them into numbers 1 or 0, do some mathematical operation.

  4. What does the "@" symbol mean in Excel formula (outside a table)

    Oct 24, 2021 · The file was saved using an older version of excel and I'm using the latest O365 version. What does the @ symbol mean and can I remove it? Please note that I'm aware of …

  5. excel - What does an exclamation mark before a cell reference …

    Nov 20, 2014 · In a text about Excel I have read the following: =SUM(!B1:!K1) when defining a name for a cell and this was entered into the Refers To field. What does this mean?

  6. what does E represent in microsoft Excel? - Stack Overflow

    Mar 30, 2020 · You can use the trendline from a graph in an equation, but, in addition to translating it correctly, you need to also format the trendline to show a maximum number of …

  7. what is this value means 1.845E-07 in excel? - Stack Overflow

    Nov 7, 2016 · 1.84E-07 is the exact value, represented using scientific notation, also known as exponential notation. 1.845E-07 is the same as 0.0000001845. Excel will display a number …

  8. excel - What's the difference between @INDEX (with at sign) and …

    Jul 20, 2022 · 1 I bumped into the following formula in Excel =@INDEX(B100:B110, C100) and was wondering what's the difference with =INDEX(B100:B110, C100) as they both appear to …

  9. vba - What does <> mean? - Stack Overflow

    I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the following formula: =IF(D23&lt;&gt;0,"Insufficent",0) I am converting it to …

  10. Meaning of .Cells (.Rows.Count,"A").End (xlUp).row

    Nov 21, 2014 · With ws lastRowIndex = .Cells(.Rows.Count, "A").End(xlUp).row End With ws.Rows.Count returns the total count of rows in the worksheet (1048576 in Excel 2010). …