Skip to content

Commit

Permalink
Add RNA control
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienCarmona committed Dec 19, 2024
1 parent 94f2cb4 commit 3d2069d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions bowiedocs/docs/1._Pogues/Le VTL dans Pogues/vtl.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,4 +475,19 @@ Et le code VTL
+ cast(substr($SIREN$,8,1),integer)*2 -(if (cast(substr($SIREN$,8,1),integer) > 4) then 9 else 0)
+ cast(substr($SIREN$,9,1),integer)
,10)) <> 0)
```

#### Contrôle de validité d'un RNA

Le format attendu est un code commençant par 'W' suivie de 9 chiffres. Un contrôle suffit.

!!! warning
On se place dans le cas où le RNA est collecté à travers la variable `RNA`.

Et le code VTL
??? tip "Code VTL pour le contrôle du RNA"

__Contrôle RNA__
```
not(match_characters($RNA$,"^W[0-9]{9}$"))
```

0 comments on commit 3d2069d

Please sign in to comment.