Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
bhold32078
Frequent Visitor

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 4
v-eachen-msft
Community Support
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.

3-1.PNG

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Hi 

 

 

 

az38
Community Champion
Community Champion

@bhold32078 

visual filter in filters pane?

I'm not sure I understand correct your needs


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

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.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.