ACTIVE Timing does not provide a lap counting feature within the software. You may use the following workaround, which combines ACTIVE Timing reporting with Microsoft Excel features to create a report displaying the total laps completed for each participant.
  • NOTE: This workaround assumes the use of Microsoft Excel for spreadsheet management. It uses VBA macro features, which have not been tested with other spreadsheet management software. If additional assistance is needed for non-Excel software, please contact IPICO Support directly.



ACTIVE Timing - Race Configuration: After creating or importing an event into ACTIVE Timing, you will need to configure your race(s) to support an indefinite number of laps
  1. Open ACTIVE Timing
  2. Locate and select appropriate event
  3. Go to Dashboard screen
  4. In the race layout, click Add Split
User-added image
  • NOTE: At this point, you need to estimate the maximum number of laps that can be completed by the most elite participant. Continue clicking Add Split until you reach this number. It is generally recommended that you add an additional 5 - 10 splits above this amount to provide a buffer.
  1. Repeat as needed for any additional races in the event

ACTIVE Timing - Reporting: After the race(s) have been completed, you will notice that you likely have no valid results available. This is to be expected, as ACTIVE Timing does not have a way to validate races with incomplete finish times. This is where the first part of the workaround takes place.
  1. Go to Results page
  2. Select Manage Results > Export > Custom Report
  3. Under Include Invalid Results, select DNF
User-added image
  1. Under Include Columns, select Cumulative Time
    • NOTE: Although you can select additional columns, it is recommended that you only include Cumulative Time, and any required columns (greyed out).
User-added image
  1. Under Race, select appropriate race(s)
User-added image
  1. Export

Microsoft Excel - Setup: Before you can effectively count participant laps, you will need to run a macro on your new report. This will remove hidden data (null values, zero length strings, etc.) which can conflict with Excel's counting formulas.
  1. Download attached workbook document (FixBlankCells.xlsm)
  2. Double-click the workbook document to run
  3. Minimize Excel
User-added image
  1. Locate and open previously saved ACTIVE Timing report
  2. Click anywhere within the results table (where the splits are located)
  3. On your keyboard, press Ctrl + A to select all cells within the table
    • NOTE: The following steps will not work if these are not highlighted (selected). Please retry if your cells are not highlighted.
User-added image
  1. From the Excel toolbar, select Developer tab
User-added image
  • NOTE: If you do not see the Developer option listed, you will need to enable it by doing the following:
    1. Go to File > Options
User-added image
  1. From left menu, select Customize Ribbon
User-added image
  1. Under Main Tabs list on right, select Developer checkbox
User-added image
  1. Click OK
  1. From Code option group, select Macros
User-added image
  1. Select FixBlankCells.xlsm!FixBlankCells from macro list
  2. Click Run
User-added image


Microsoft Excel - Calculate Total Laps: The final step in the workaround is to use a simple formula which will do the job of counting each participant's total laps, and returning that value for us.
  • NOTE: The following steps assume that only the Cumulative Time column was selected from the report options. If you included additional columns, you must delete them from the table so that they are not included in your count totals.
  1. Locate (or insert, if needed) an empty column outside of the results table
  2. Give this column a header name, such as LAP COUNT
User-added image
  1. Select first cell in this column corresponding to a participants data (E.g., if John Doe's race data sits on Row 9, then the first cell you would select within the new column would be on Row 9 as well)
User-added image
  1. Enter the following formula: =COUNTA(FirstCell:LastCell)
    • NOTE: Replace FirstCell:LastCell with the actual cell names that you wish to count. For example, if John Doe's race data sits on Row 9, beginning at Column I and ending at Column M, then enter =COUNTA(I9:M9). This formula will count all the cells between I9 and M9 which contain data of some kind.
​​​​​​​User-added image
  1. Press Enter
  2. Repeat for all remaining participants
    • NOTE: To quickly repeat this formula for the remainder of your participants, do the following:
      1. Select the first formula-containing cell in the Lap Count column
      2. The cell will be outlined (in green most likely), with a small box in the lower-right corner
      3. Move your cursor over this box so that it changes to a plus sign
      4. Left-click and drag until you reach the bottom of your participant list
User-added image
  1. Release the left mouse button 
User-added image