About 22,400,000 results
Open links in new tab
  1. 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.

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

    Oct 24, 2021 · Excel has recently introduced a huge feature called Dynamic arrays. And along with that, Excel also started to make a " substantial upgrade " to their formula language. One such upgrade is the addition of @ operator which is called Implicit Intersection Operator. How is it used The @ symbol is already used in table references to indicate implicit intersection. Consider the …

  3. excel - Check whether a cell contains a substring - Stack Overflow

    Sep 4, 2013 · Is there an in-built function to check if a cell contains a given character/substring? It would mean you can apply textual functions like Left/Right/Mid on a conditional basis without throwing e...

  4. excel - How to show current user name in a cell? - Stack Overflow

    Aug 3, 2011 · In most of the online resource I can find usually show me how to retrieve this information in VBA. Is there any direct way to get this information in a cell? For example as simple as =ENVIRON('Use...

  5. excel - Return values from the row above to the current row

    Jun 15, 2012 · To solve this problem in Excel, usually I would just type in the literal row number of the cell above, e.g., if I'm typing in Cell A7, I would use the formula =A6. Then if I copied that formula to other cells, they would also use the row of the previous cell. Another option is to use Indirect(), which resolves the literal statement inside to be a formula. You could use something …

  6. excel - SUMIF dynamically change summing column - Stack …

    I am using SUMIFS and want the sum_range dynamically to change according to the name I have of a column. I have a table with about 100 columns. Say one of these columns is Paid_BC_items. I want a

  7. Extract Data from PDF and Add to Worksheet - Stack Overflow

    I am trying to extract the data from a PDF document into a worksheet. The PDFs show and text can be manually copied and pasted into the Excel document. I am currently doing this through SendKeys a...

  8. excel - Using the value in a cell as a cell reference in a formula ...

    I'd like to know how to pull cell references from the value of another cell and insert them into a formula. For a simple example: In cell A1 I have this: COUNT(B4:H4) Instead of choosing the range ...

  9. excel - PowerQuery: How can I concatenate grouped values

    If I have the following table (shown in the image below), how can I write a grouped query that would concatenate the grouped results? For this example, I'd want to group by the LetterColumn and

  10. excel - Skip to next iteration in loop vba - Stack Overflow

    I am trying to create a simple conditional loop that will go to the next iteration if a condition is true. The code I have so far is: For i = 2 To 24 Level = Cells(i, 4) Return = Cells(i, 5...