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
Mackie
Helper I
Helper I

Set blank and set zero properly when drawing line chart

I want to create a line chart which has "date" as X-axis and count of "product_key" as Y-axis.
And blank should be zero. So I create this measure but unfortunately it reports zero when date comes over limit such as 2019/10/1 and 2020/1/1. How can I set BLANK() when date comes over limit? Thank you.

 

date

product_key
2019/11/11
2019/11/12
2019/12/12
2019/10/13
2019/11/13
2019/12/13

 

 

count_product_key = 
IF (
CALCULATE ( COUNT('table'[product_key]) ) = BLANK (),
0,
CALCULATE ( COUNT('table'[product_key]) )
)

 

 

 

 

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

@Mackie 

itsnot a DAX question, I think

you could set filter visual count_product_key2 is greater then 0, for example

I m not sure how exactly do you want to see a result, for example for point 2019 December and product_key=1


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

3 REPLIES 3
az38
Community Champion
Community Champion

Hi @Mackie 

COUNT() function should not return BLANK(), it should be a digit like 0

So, try 

count_product_key = 
IF (
CALCULATE ( COUNT('table'[product_key]) ) = 0,
BLANK(),
CALCULATE ( COUNT('table'[product_key]) )
)

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Hi, @az38 .

I tried your measure but it does not report zero properly.

Could you download this Power BI file and open it? I created two charts using my measure and your measure.

 

https://sharpsynappx-my.sharepoint.com/:u:/g/personal/mackie_sharpsynappx_onmicrosoft_com/EW_5zztrky...

 

And the problem I want to solve is shown in this picture. That is to remove the unccesary part. 

 

sample_count_product_key.png 

az38
Community Champion
Community Champion

@Mackie 

itsnot a DAX question, I think

you could set filter visual count_product_key2 is greater then 0, for example

I m not sure how exactly do you want to see a result, for example for point 2019 December and product_key=1


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

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.

Top Solution Authors