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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Oros
Post Partisan
Post Partisan

Show $0.00 Sales to a customer by a saleperson based on TOP N

Hello,

 

Is there a way to also show if sales of a selected salesperson has $0.00 sales to his assigned customers, based for each of the TOP N items?  Each Salesperson has his assigned customers.

 

Here is the illustraion for details.  Thanks.

 

power-bi-issue-2.jpg

3 ACCEPTED SOLUTIONS

Hi, @Oros 

Yes,and you  can also  try to create a new measure  as below  to replace your original  field "Sales"

 

Measure_Sales =
SUM ( 'Table'[Sales] ) + 0

 

 

Best Regards,
Community Support Team _ Eason

View solution in original post

It worked!  Thanks.

View solution in original post

THANKS!!! It worked too!

View solution in original post

5 REPLIES 5
Greg_Deckler
Super User
Super User

@Oros Well, you could construct your sales measure like the following:

Sales = 
  VAR __Sales = SUM('FactTable'[Sales Amount])
RETURN
  IF(ISBLANK(__Sales),0,__Sales)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

THANKS!!! It worked too!

Hi Greg,

 

Thank you for your reply.

 

Do I change the __Sales in the Return line?

Hi, @Oros 

Yes,and you  can also  try to create a new measure  as below  to replace your original  field "Sales"

 

Measure_Sales =
SUM ( 'Table'[Sales] ) + 0

 

 

Best Regards,
Community Support Team _ Eason

It worked!  Thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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