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
danialsj
Frequent Visitor

Return column of unique IDs which don't have a specific value

The following is a summary of my data:

ID           TransactionCODE       Amount
1001       OPEN                         1000
1001       CHARGE1                   100
1002       CHARGE1                   70
1002       CHARGE2                   110
1003       OPEN                         1100
1004       OPEN                         1500
1004       CHARGE1                   70
1005       CHARGE1                   90

 

'OPEN' means the cost of opening an account. Sometimes this cost is waived off and therefore no entry is made. 

 

I want to find out which unique IDs don't have the 'OPEN' entry in them. From the above dataset, my result should be a column:

ID
1002

1005

 

(1002 has CHARGE1 and CHARGE2 but no OPEN. 1005 has CHARGE1 but no OPEN)

 

Please help!

 

1 ACCEPTED SOLUTION
Nathaniel_C
Super User
Super User

Hi @danialsj , 

This is a column added to your data using the code below.


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

 

 

 

 

No Open col = 
var Target = "OPEN"


var ISOPEN = If(CALCULATE(MAX('ID'[ID]),FILTER(ALLEXCEPT('ID','ID'[ID]),'ID'[TransformationCode]=Target)),BLANK(),'ID'[ID])


return ISOPEN

 

NO open.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
Nathaniel_C
Super User
Super User

Hi @danialsj , 

This is a column added to your data using the code below.


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

 

 

 

 

No Open col = 
var Target = "OPEN"


var ISOPEN = If(CALCULATE(MAX('ID'[ID]),FILTER(ALLEXCEPT('ID','ID'[ID]),'ID'[TransformationCode]=Target)),BLANK(),'ID'[ID])


return ISOPEN

 

NO open.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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