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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors