Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I have a table contans customerId, Code columns. I want to add calculated column and populate either ture or false.
The condition is if any customer contains code C or D, then i need to add value true for all records associated to that customerId else false.
Below is the sample data. you will see false for all records for customer id 102 as no C or D code records for 102.
Could you please help me to resolve the issue?
Solved! Go to Solution.
Hi @pprasadravi ,
You could create a new column like the below:
Column =
IF (
CONTAINS (
FILTER ( Customer, Customer[CustomerID] = EARLIER ( Customer[CustomerID] ) ),
Customer[Code], "C"
)
= TRUE ()
|| CONTAINS (
FILTER ( Customer, Customer[CustomerID] = EARLIER ( Customer[CustomerID] ) ),
Customer[Code], "D"
)
= TRUE (),
TRUE (),
FALSE ()
)
Output result:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi @pprasadravi ,
You could create a new column like the below:
Column =
IF (
CONTAINS (
FILTER ( Customer, Customer[CustomerID] = EARLIER ( Customer[CustomerID] ) ),
Customer[Code], "C"
)
= TRUE ()
|| CONTAINS (
FILTER ( Customer, Customer[CustomerID] = EARLIER ( Customer[CustomerID] ) ),
Customer[Code], "D"
)
= TRUE (),
TRUE (),
FALSE ()
)
Output result:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi,
Thak you for the quick response.
I want to have true or false for all rows for a customer ID. That means I have to update false for all records realed to 102 and update true for all records related to 100 and 101 as they have C or D records.
I think i am able to resolve the issue using below DAX. But i am not sure this is the efficient way or not.
IF(Code == "C" || Code == "D" ,"True","False")
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |