Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
chadliagabsi
Creator II
Creator II

TextBetween to eliminate one number

Bonjour,

Comment pourrai je utiliser textbetween pour prendre que 4chiffres de l'attribut suivant TextBetween Date(Date#(ADDTEN, 'DDMYYYY'), 'YYYY') c'est à dire je dois supprimer le 1er chiffre et prendre les 4.

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi,

You use Mid() instead TextBetween

Mid(Date(Date#(ADDTEN, 'DDMYYYY'), 'YYYY'),2,4)

Regards,

Antonio

View solution in original post

1 Reply
antoniotiman
Master III
Master III

Hi,

You use Mid() instead TextBetween

Mid(Date(Date#(ADDTEN, 'DDMYYYY'), 'YYYY'),2,4)

Regards,

Antonio