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.
I am sharing my Pbix file here.
I am trying to understand the logic here:
I got the final value as 0, and I am trying to understand how I got it.
If you look at the bottom formula, basically if the second argument meets the criteria, the outcome is 0
This is data:
How do I get the 0 when:
min(Step) = 1 &&
min(Consent) is not "Refused" &&
min(ConsentDate) is not blank
or
max(Step) = 2 &&
max(Consent) is not "Refused" &&
max(ConsentDate) is not blank
Null is considered blank, correct? no?
Solved! Go to Solution.
@JustinDoh1 , first one is new column I am creating in temp table, Second I am using that column
@JustinDoh1 , Try like
Refused 0817 =
Sumx (SUMMARIZE( Table1, Table1[Consent], Table1[ConsentDate],"_1",
CALCULATE( DISTINCTCOUNT( Table1[ClientID] ),
(
Table1[Consent] = "Refused" &&
Table1[step] = 1 // &&
//vImmunization < vConsent
)
))
, [_1])
@amitchandak Thanks for your help. I am trying to understand the code. What do "_1" and [_1] do?
@JustinDoh1 , first one is new column I am creating in temp table, Second I am using that column
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
7 |
User | Count |
---|---|
20 | |
14 | |
11 | |
10 | |
10 |