Forum Discussion
Rakesh891
Dec 30, 2021Copper Contributor
In excel cell should allow only alphabets validation require
Hy can u help me in doing this task.
My ce should allow only alphabets ( not including number or any symbol.) with help of validation tools only
My ce should allow only alphabets ( not including number or any symbol.) with help of validation tools only
5 Replies
Let's say you want to apply this to the range A1:A100.
Select this range. A1 should be the active cell in the selection.
Create a data validation rule of type Custom with formula
=SUMPRODUCT((CODE(UPPER(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)))>=65)*(CODE(UPPER(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)))<=90))=LEN(A1)