Conditional Split: filter on part of a word in the field

  • Good morning all,

    I start with SSIS and I try to do tests.

    I have a question about filters.

    Here I have a flat csv file as source.

    I have to make filters (conditional split).

    The first filters are simple: <nomchamps> == "Workstation" || <nomchamps> == "Server"

    I have to do a filter on Administrator, Administrator, Administrador, I thought I could do <nomchamps> == "Administra %%" but it does not work

    or groups that start with ASV <nomchamps> == "ASV %%" and that's where I block.

    Could you help me?

    thank you so much

  • I think you need to use FINDSTRING().

    FINDSTRING(nomchamps, "Administra",1) > 0

    should work.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply