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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Chipsahoy1
Frequent Visitor

Item with multiple values

Hi All,

 

Thanks in advance for your help. I'm a Power BI newbie and need some help.

 

In the table below a PO # can have multiple values listed under the Primary/Revision column. What I need help with is if a PO # has primary, revision, and TBD listed (PO # 1), or primary and TBD listed (PO # 3) I need all the rows under the Type column to list primary for those particular PO #s.  If a PO # has revision and TBD (PO # 2), I need revision listed for all rows under the Type column for that particular PO #.  Is there a DAX can do this?

PO #PO Line #Primary/RevisionType
11TBDPrimary 
12PrimaryPrimary 
13Revision Primary 
21TBDRevision 
22RevisionRevision 
31TBDPrimary 
32PrimaryPrimary
33TBDPrimary
34TBDPrimary
35TBDPrimary
1 ACCEPTED SOLUTION

Hi, @Chipsahoy1 

Thank you for your feedback.

I tried to add few more columns into your sample to check.

Please check the below picture and the sample pbix file's link, whether it suits your case.

 

Picture2.png

 

Type CC =
VAR currentpo = 'Table'[PO #]
VAR potableconditioncolumn =
SUMMARIZE (
FILTER ( 'Table', 'Table'[PO #] = currentpo ),
'Table'[Primary/Revision]
)
RETURN
SWITCH (
TRUE (),
"Primary" IN potableconditioncolumn, "Primary",
"TBD"
IN potableconditioncolumn
&& COUNTROWS ( potableconditioncolumn ) = 1, "TBD",
"Revision"
)
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
Jihwan_Kim
Super User
Super User

Hi, @Chipsahoy1 

Please correct me if I wrongly understood your question.

Please check the below picture and the formula for creating a new column.

 

Picture7.png

 

Type CC =
VAR currentpo = 'Table'[PO #]
VAR potableconditioncolumn =
SUMMARIZE (
FILTER ( 'Table', 'Table'[PO #] = currentpo ),
'Table'[Primary/Revision]
)
RETURN
SWITCH ( TRUE (), "Primary" IN potableconditioncolumn, "Primary", "Revision" )
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thanks for your quick response @Jihwan_Kim.I forgot to mention an important aspect in my post. If I have a PO # that only has TBD listed under the Primary/Revision column, I need it to have TBD listed for all the rows under the type column for that particular PO #. Right now, your DAX code is listing Revision for all the PO #s that only have TBD listed.  My apologies. 

Hi, @Chipsahoy1 

Thank you for your feedback.

I tried to add few more columns into your sample to check.

Please check the below picture and the sample pbix file's link, whether it suits your case.

 

Picture2.png

 

Type CC =
VAR currentpo = 'Table'[PO #]
VAR potableconditioncolumn =
SUMMARIZE (
FILTER ( 'Table', 'Table'[PO #] = currentpo ),
'Table'[Primary/Revision]
)
RETURN
SWITCH (
TRUE (),
"Primary" IN potableconditioncolumn, "Primary",
"TBD"
IN potableconditioncolumn
&& COUNTROWS ( potableconditioncolumn ) = 1, "TBD",
"Revision"
)
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


@Jihwan_Kim thank you for your help!  Your formula worked like a charm. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors