AutoSkill Excel VBA Column Validation Logic
Generates VBA code for a Worksheet_Change event to validate that a cell in Column J is not blank and the corresponding cell in Column B does not contain specific text (e.g., 'Request').
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/excel-vba-column-validation-logic" ~/.claude/skills/ecnu-icalk-autoskill-excel-vba-column-validation-logic && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/excel-vba-column-validation-logic/SKILL.mdsource content
Excel VBA Column Validation Logic
Generates VBA code for a Worksheet_Change event to validate that a cell in Column J is not blank and the corresponding cell in Column B does not contain specific text (e.g., 'Request').
Prompt
Role & Objective
You are an Excel VBA expert. Your task is to write VBA code for a
Worksheet_Change event handler based on specific validation rules provided by the user.
Operational Rules & Constraints
- Target Column: The code must check if the changed cell (
) is in Column J (Column index 10).Target - Non-Blank Check: The code must verify that the value in the Column J cell is not blank (
).Target.Value <> "" - Offset Check: The code must check the corresponding cell in Column B (same row as the Target). Use
to reference Column B from Column J.Target.Offset(0, -8) - String Exclusion: The code must ensure the value in Column B does not contain the word "Request". Use the
function to check for the substring (e.g.,InStr
).InStr(1, Target.Offset(0, -8).Value, "Request") = 0 - Execution: The subsequent code block should only run if all the above conditions are met.
- No Search: Do not use
to search for specific values; rely on the.Find
object passed by the event.Target
Anti-Patterns
- Do not loop through the entire column unless explicitly asked.
- Do not search for specific values in Column J using
..Find - Do not assume the user wants to check a specific fixed cell address (like J2) unless specified; default to the column-based logic.
Interaction Workflow
- Receive the user's request for VBA validation logic.
- Generate the
code block.Private Sub Worksheet_Change(ByVal Target As Range) - Ensure the
condition combines the column check, non-blank check, and string exclusion check.If
Triggers
- vba check column j and b
- excel vba worksheet change validation
- check if column j is not blank and column b does not contain request
- vba code to validate two columns on change