About 50 results
Open links in new tab
  1. How to loop in excel without VBA or macros? - Stack Overflow

    With Excel 2023, the answer is yes. The REDUCE function will loop through arrays, but it does have some limitations; REDUCE can only pass the value of one variable from one iteration to the next. …

  2. Loop through each row of a range in Excel - Stack Overflow

    Jul 8, 2019 · How do I loop through each row of a multi-column range using Excel VBA? All the tutorials I've been searching up seem only to mention working through a one-dimensional range...

  3. Creating something like an Excel "Loop" without VBA

    May 13, 2017 · I am trying to build a formula that simulates a "loop" in excel. The spreadsheet pulls data from a database into four spreadsheets. The formula needs to iterate through the sheets, moving …

  4. For Each Cell Loop - Excel JavaScript API - Stack Overflow

    Jan 26, 2022 · Here is an example I used to iterate over a range, only using one context.sync() to find a cell match via RegEx which should illustrate how to use a For Each Cell loop.

  5. What is the most efficient/quickest way to loop through rows in VBA ...

    Nov 18, 2011 · What is slow is repeated access to Excel in the loop (be it reading or writing cell values, format etc, inserting/deleting rows etc). What is too slow depends entierly on your needs.

  6. excel - Loop through files in a folder using VBA? - Stack Overflow

    Apr 30, 2012 · I would like to loop through the files of a directory using vba in Excel 2010. In the loop, I will need: the filename, and the date at which the file was formatted. I have coded the following wh...

  7. Excel VBA Loop on columns - Stack Overflow

    Dec 21, 2012 · Yes, let's use Select as an example sample code: Columns("A").select How to loop through Columns: Method 1: (You can use index to replace the Excel Address)

  8. Excel Formula to loop through a range - Stack Overflow

    Aug 18, 2022 · I am looking for an excel formula not VBA I can do it with VBA but there is a reason I do not want to use VBA. For example I have 1 column and 6 rows as per below. I want to specify a …

  9. Python Loop through Excel sheets, place into one df

    Jun 14, 2017 · Python Loop through Excel sheets, place into one df Asked 8 years, 8 months ago Modified 2 years, 11 months ago Viewed 106k times

  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...