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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
sakuragihana
Helper IV
Helper IV

Need help to sum value

Hello everyone, I have 2 table below : 

Table 1 : 

sakuragihana_0-1677050481378.png

 

Table 2 : 

sakuragihana_1-1677050481375.png

 

I post a pibx in that link : https://drive.google.com/file/d/1v5l0TgW5xPf0o5IqxBqPHSJ59jM-fP-8/view?usp=share_link 

 

I want to sum value from Table 2 that Campus Code is unspecified into Table 1 (respectively Province Name ) . I don't want to show Unspecified in the table 1

Table 1 like : 

sakuragihana_2-1677050481383.png

 

 

Can everyone help me a dax ?

1 ACCEPTED SOLUTION

Hi, @sakuragihana 

 

You can try the following methods.

Lead Digital2 = 
CALCULATE ( SUM ( 'Lead'[# Of Lead Digital] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)+SUM('Lead'[# Of Lead Digital])
Lead Direct2 = 
CALCULATE ( SUM ( 'Lead'[# Of Lead Direct] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)+SUM('Lead'[# Of Lead Direct])
Lead Referral2 = SUM('Lead'[# of Lead Referral])
Total Lead = [Lead Digital2]+[Lead Direct2]+[Lead Referral2]

vzhangti_0-1677216409755.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

4 REPLIES 4
v-zhangti
Community Support
Community Support

Hi, @sakuragihana 

 

You can try the following methods.
Measure:

Lead Digital2 =
CALCULATE ( SUM ( 'Data Lead'[# Of Lead Digital] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Data Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)
Lead Direct2 = 
CALCULATE ( SUM ( 'Data Lead'[# Of Lead Direct] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Data Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)
Total Lead = SUM('Data Lead'[# Of Lead Digital])+SUM('Data Lead'[# Of Lead Direct])+SUM('Data Lead'[# of Lead Referral])+[Lead Digital2]+[Lead Direct2]

vzhangti_0-1677207537820.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-zhangti , 

I want to Sum value from table 2 into table 1 and don't show the row Unspecified . Example :

sakuragihana_0-1677209931139.png

 

I'm sorry maybe the link is wrong data, I had repaired the link above with a right data 

 

Hi, @sakuragihana 

 

You can try the following methods.

Lead Digital2 = 
CALCULATE ( SUM ( 'Lead'[# Of Lead Digital] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)+SUM('Lead'[# Of Lead Digital])
Lead Direct2 = 
CALCULATE ( SUM ( 'Lead'[# Of Lead Direct] ),
    FILTER ( ALL ( Campus ), [Campus Name] = "Unspecified" ),
    FILTER ( ALL ( 'Lead' ),
        [Province Name] = SELECTEDVALUE ( Campus[Province Name] )
    )
)+SUM('Lead'[# Of Lead Direct])
Lead Referral2 = SUM('Lead'[# of Lead Referral])
Total Lead = [Lead Digital2]+[Lead Direct2]+[Lead Referral2]

vzhangti_0-1677216409755.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hii @v-zhangti , 

 Thank you so much !

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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