Function QtePourDans(ByVal Pour, ByVal Dans)
Dim x, y
QtePourDans = ""
If Trim(Dans) = "" Then Exit Function
For Each x In Split(Dans, "|")
y = Split(Application.Trim(x) & " ")
If LCase(y(1)) = LCase(Pour) Then If Left(y(0), 1) Like "#" Then QtePourDans = Val(y(0)): Exit Function
Next x
End Function