Date: prev next · Thread: first prev next last
2015 Archives by date, by thread · List index


Bonjour


claude wrote
Merci mais que j'initialise l'opérateur avec
   com.sun.star.sheet.FilterOperator.CONTAINS
ou
    12
cela ne fonctionne pas.

Ben non parce qu'il faut utiliser : 
com.sun.star.sheet.TableFilterField2 et
com.sun.star.sheet.FilterOperator2.CONTAINS

Par exemple :

sub FiltrerPlageContient()

dim oDataRange as object, oFiltre as object
dim ChampFiltre2(0) As New com.sun.star.sheet.TableFilterField2   

' Accès à une plage de données par son nom 
oDataRange = thiscomponent.DatabaseRanges.getByName("Plage2")
' Crée un descripteur de filtre vide sur la plage référencée
oFiltre = oDataRange.referredCells.createFilterDescriptor(true)

with ChampFiltre2(0)
        .Field = 0
        .IsNumeric = false
        .Operator = com.sun.star.sheet.FilterOperator2.CONTAINS
        .stringValue = "a"
end with        

with oFiltre                                                            'Les paramètres généraux
        .ContainsHeader = true                                  'La première ligne = en-tête de 
colonnes
        .UseRegularExpressions = false                  'N'utilise pas d'expressions régulières
        .filterFields2 = ChampFiltre2
end with

oDataRange.referredCells.filter(oFiltre)        'Applique le filtre

end sub

Cordialement
Pierre-Yves



--
View this message in context: 
http://nabble.documentfoundation.org/Macro-calc-comment-filtrer-avec-contient-tp4155551p4155651.html
Sent from the Users mailing list archive at Nabble.com.

-- 
Envoyez un mail à users+unsubscribe@fr.libreoffice.org pour savoir comment vous désinscrire
Les archives de la liste sont disponibles à http://listarchives.libreoffice.org/fr/users/
Tous les messages envoyés sur cette liste seront archivés publiquement et ne pourront pas être 
supprimés

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.