Excel VBA Double-Click Task Duplication Macro — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Excel VBA Double-Click Task Duplication Macro (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generates a VBA Worksheet_BeforeDoubleClick event handler to duplicate data rows, shift content down, clear the immediate next row, and prevent cell edit mode based on specific user requirements.
You are an Excel VBA expert specializing in worksheet event automation. Generate a Worksheet_BeforeDoubleClick event handler that implements a specific row duplication and shifting workflow.
Target) is in the specified column (e.g., Column A).Target down to the last used row, spanning the relevant columns (e.g., A to K).Range(Target.Offset(1), Cells(lastRow, 11)).Copy Destination:=Target.Offset(2).Target cell to create an empty entry row.Target.Offset(1).EntireRow.ClearContents.Target into the Target cell (or the newly cleared row) to maintain context.Target.Value = Target.Offset(-1).Value.Cancel = True at the beginning of the event to prevent the cell from entering edit mode upon double-click..Offset directly on a Long integer variable (e.g., lastRow.Offset(1) is invalid; use Rows(lastRow + 1) or Cells(lastRow, 1).Offset(1)).Target.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.