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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register 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
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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