Forum Discussion

bhold32078's avatar
bhold32078
Frequent Visitor
6 years ago

Maximo Purchase Order data filters

Hi all,

   I can usually find answers to everything on the Google machine, but this has me stumped. 

 

Purchase Orders can contain Line Types of Services, Materials, Items, or a mix of both Materials and Items.

 

I'm trying to display only the "both Materials and Items" option in my visual. This seems like an easy formula, but I can't visualize how to create it properly?

 

Table: POLINE

Column: LINETYPE

LINETYPE: SERVICE, MATERIAL, ITEM

 

Any help/pointers are appreciated.

4 Replies

  • az38's avatar
    az38
    Community Champion

    bhold32078 

    visual filter in filters pane?

    I'm not sure I understand correct your needs

    • bhold32078's avatar
      bhold32078
      Frequent Visitor

      Sorry, I'd like to use the Visualizations "table" and create a formula to only display purchase orders that contain both a MATERIAL and an ITEM in its PO Lines.

  • v-eachen-msft's avatar
    v-eachen-msft
    Community Support

    Hi bhold32078 ,

     

    You could create a measure like the following codes.

    Measure =
    IF (
        "Item" IN VALUES ( POLINE[LINETYPE] )
            && "MATERIAL" IN VALUES ( POLINE[LINETYPE] ),
        1,
        0
    )

    Then put it into filter pane of your table visual and make it showing 1.

     

    • bhold32078's avatar
      bhold32078
      Frequent Visitor

      Hi