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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
qinny
Frequent Visitor

Sales by members & Non members

hi all, I am new to power bi, hope someone can advice on the following:

 

I have a worksheet of transactions made by members & non members, and sales amount.

member has a ID no. and nonmembers are indicated by NIL

 

How can i write a formula for sales made by members & non members?

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

 

In a simple Table visual, drag ID column and write the following measure

 

=SUM(Data[Amount])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

 

In a simple Table visual, drag ID column and write the following measure

 

=SUM(Data[Amount])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
RolandsP
Resolver IV
Resolver IV

One way would be:

 

Sales of members = CALCULATE (SUM(TableName[Sales], TableName[ID] <> BLANK())

 

Sales of non-members = CALCULATE(SUM(TableName[Sales], TableName[ID] = BLANK())

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.