HI! I want to limit the format of the text th...

HI! I want to limit the format of the text that can be entered for a field, as example: only can enter text beggining with prefix EXT- or 2.0- and 3 digits after it, example:

2.0-052 EXT-001

Which formula can i use to avoid to enter already existing values in the column?

Thanks!

0 1 351
1 REPLY 1

#1 - You need to create a validation rule and it could be something likeโ€ฆ

AND( LEN([_THIS])=7, OR( LEFT([_THIS],4)=โ€œ2.0-โ€, LEFT([_THIS],4)=โ€œEXT-โ€) )

#2 - You can avoid duplicate value with the formulaโ€ฆ

IF([_THIS]=LOOKUP([_THISROW].[KeyColumn],Table,KeyColumn,ColumnA),

TRUE,

NOT(IN([_THIS],Table[ColumnA])))

Top Labels in this Space