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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
JustinDoh1
Post Prodigy
Post Prodigy

Trying to understand the outcome from my DAX code using Min & Max (especially for character)

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

 

JustinDoh1_0-1629241574835.png

 

This is data:

JustinDoh1_2-1629238607536.png

 

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?

1 ACCEPTED SOLUTION

@JustinDoh1 , first one is new column I am creating in temp table, Second I am using that column

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@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]) 
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors