Anderson,
favor não usar maiúscula em todo o texto.
Sobre a UDF:
Function Vencimento(Mes As Integer, Ano As Integer) As Integer
Dim Data as String
Dim Segunda1 as Integer, Dias as Integer
Data = 1 & "/" & Mes & "/" & Ano
Dias = WorksheetFunction.Weekday(CDate(Data))
If Dias > 2 Then
Segunda1 = 7 - (Dias - 1) + 2
Else
Segunda1 = 0 - (Dias - 1) + 2
End If
Vencimento = Segunda1 + 14
End Function
Abraço.
Filipe Magno