agentsclimarketplace

Excel vba column validation logic

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/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').From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill excel-vba-column-validation-logic

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.6 KB, 481 tokens by cl100k_base, as published. Nobody here has run it

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

  1. Target Column: The code must check if the changed cell (Target) is in Column J (Column index 10).
  2. Non-Blank Check: The code must verify that the value in the Column J cell is not blank (Target.Value <> "").
  3. Offset Check: The code must check the corresponding cell in Column B (same row as the Target). Use Target.Offset(0, -8) to reference Column B from Column J.
  4. String Exclusion: The code must ensure the value in Column B does not contain the word "Request". Use the InStr function to check for the substring (e.g., InStr(1, Target.Offset(0, -8).Value, "Request") = 0).
  5. Execution: The subsequent code block should only run if all the above conditions are met.
  6. No Search: Do not use .Find to search for specific values; rely on the Target object passed by the event.

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

  1. Receive the user's request for VBA validation logic.
  2. Generate the Private Sub Worksheet_Change(ByVal Target As Range) code block.
  3. Ensure the If condition combines the column check, non-blank check, and string exclusion check.

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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.