Encontré esto: "Data validation not supported in Starter version. Past rules will be enforced from other versions, but forget creating new dropdowns."
Bueno, eso no ayuda mucho, ja ja. Probemos con una macro. Instrucciones:
1. Abre tu hoja de excel
2. Para abrir Vba-macros y poder pegar la macro, Presiona ALt + F11
3. Del lado izquierdo dice: VBAProject, abajo dale doble click a worksheet(tu hoja)
4. Del lado derecho copia la macro
'*********
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Por dAm
valor = Len(Range("C2"))
If valor > 5 Then
MsgBox ("El valor de la celda se excede de largo")
Range("C2").Clear
Range("C2").Select
End If
End Sub
'*********