원클릭으로
access-vba-reserved-words
Detect and avoid Microsoft Access / VBA reserved words in identifiers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Detect and avoid Microsoft Access / VBA reserved words in identifiers.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | access-vba-reserved-words |
| description | Detect and avoid Microsoft Access / VBA reserved words in identifiers. |
| license | CC-BY-4.0 |
Help developers avoid case-insensitive identifier collisions in Access/VBA.
VBA keywords & operators
Dim, If, Select, Function, ByVal, And, etc.
Built-in VBA function names
InStr, Left, Right, Mid, Len, Date, Time, Now, etc.
Access/DAO object model names
Form, Forms, Report, Section, Field, Fields, Recordset, etc.
ACE/Jet SQL keywords
SELECT, FROM, WHERE, JOIN, GROUP BY, ORDER BY, TABLE, INDEX, UNION, etc.
Special characters/symbols
Spaces, ', ", ., !, ?, *, +, -, =, <, >, #, %, $, &, @, \, /, ^, ~, {}, [], ().
Access and the database engine treat names case-insensitively; reusing these terms as identifiers often leads to compile or runtime errors.
Priority: Complete Steps 1–4 in order. Step 5 is optional and should be considered only when explicitly requested.
DateField, FormControl) should be noted as potential concerns, but only exact or very obvious collidances require immediate action. Use judgment based on context.InStr → posInStr or searchPosDate → SaleDate / CreatedDateName → PersonName / ItemNameText → BodyText / MessageTextstrName, lngCount, dtmStart, frmMain, qrySales).[Date]; while bracketing can work, renaming avoids subtle bugs.date, time, now, value, name, text, yearinstr, left, right, mid, lenform, forms, report, section, field, fieldsselect, from, where, join, order, group, union, table, indexSaleDate, IsEligible, TotalAmount.str, lng, dtm, frm, qry) for clarity.Data, Info, Temp when they collide with engine terms.Date and Text across forms.”