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
Anonymous
Not applicable

How to find Countblank

Hi Seniors,

1. I need to find the blank count between data, from launched date

2. find max blank count between data from launched dateCapture.JPG

1 ACCEPTED SOLUTION
v-janeyg-msft
Community Support
Community Support

Hi, @Anonymous 

 

It’s my pleasure to answer for you.

According to your description,I think you can create two measure to calculate the correct results.

Like this:

countblank =
COUNTBLANK ( Table1[number] )

max countblank =
VAR maxdate =
    MAXX ( ALL ( Table1 ), [date] )
VAR tableindeax =
    SUMMARIZE (
        FILTER ( ALLSELECTED ( Table1 ), [number] <> BLANK () ),
        Table1[date],
        Table1[number]
    )
VAR minxdate =
    MINX ( ALLSELECTED ( Table1 ), [date] )
VAR minxdateindex =
    MINX ( tableindeax, [date] )
VAR countfirst =
    DATEDIFF ( minxdate, minxdateindex, DAY )
VAR tab =
    ADDCOLUMNS (
        tableindeax,
        "New",
            VAR next =
                MINX ( FILTER ( tableindeax, [date] > EARLIER ( Table1[date] ) ), [date] )
            RETURN
                DATEDIFF ( [date], next, DAY ) - 1
    )
RETURN
    MAX ( MAXX ( tab, [New] ), countfirst )

v-janeyg-msft_0-1603431517849.png

Here is my sample .pbix file.Hope this helps.

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

3 REPLIES 3
v-janeyg-msft
Community Support
Community Support

Hi, @Anonymous 

 

It’s my pleasure to answer for you.

According to your description,I think you can create two measure to calculate the correct results.

Like this:

countblank =
COUNTBLANK ( Table1[number] )

max countblank =
VAR maxdate =
    MAXX ( ALL ( Table1 ), [date] )
VAR tableindeax =
    SUMMARIZE (
        FILTER ( ALLSELECTED ( Table1 ), [number] <> BLANK () ),
        Table1[date],
        Table1[number]
    )
VAR minxdate =
    MINX ( ALLSELECTED ( Table1 ), [date] )
VAR minxdateindex =
    MINX ( tableindeax, [date] )
VAR countfirst =
    DATEDIFF ( minxdate, minxdateindex, DAY )
VAR tab =
    ADDCOLUMNS (
        tableindeax,
        "New",
            VAR next =
                MINX ( FILTER ( tableindeax, [date] > EARLIER ( Table1[date] ) ), [date] )
            RETURN
                DATEDIFF ( [date], next, DAY ) - 1
    )
RETURN
    MAX ( MAXX ( tab, [New] ), countfirst )

v-janeyg-msft_0-1603431517849.png

Here is my sample .pbix file.Hope this helps.

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

amitchandak
Super User
Super User

@Anonymous , Check if somthing like this can work

countrows(filter(table,isblank(table[column])))

Anonymous
Not applicable

HI,

 

im new

its in pivot table, explain clear little bit

 

thanks advance

 

 

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.