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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
bjurek
Helper I
Helper I

Calculate in row

Hello!

 

Anybody knows how calculate "How many times in a row there is no availability counted from the last date"

 

bjurek_0-1679584235867.png

 

3 REPLIES 3
FreemanZ
Super User
Super User

hi @bjurek 

try to add a calculated column like:

Column = 
VAR _currentdate = tbl[Date]
VAR _table = FILTER(tbl, tbl[Shop]=EARLIER(tbl[Shop]))
VAR _stopdate =
MAXX(
    FILTER(
        _table,
        tbl[Date]<_currentdate
            &&tbl[value]=1
    ),
    tbl[Date]
)
VAR RESULT=
IF(
    tbl[Value]=0&&tbl[Date]=MAXX(_table, tbl[date]),
    COUNTROWS(
        FILTER(
           _table,
            tbl[Date]<=_currentdate
                &&tbl[Date]>_stopdate
        )
    ),
    BLANK()    
)
RETURN RESULT

 

it worked like:

FreemanZ_0-1680927151004.png

amitchandak
Super User
Super User

@bjurek , if you need a new column

 

if([Date] = maxx(filter(Table, [Shop] = earlier([Shop])), [Date]) , Countx(filter(Table, [Shop] = earlier([Shop]) && [availability] =0 ), [Date]) , blank())

 

for measures

 

if(MAx([Date]) = maxx(filter(allselected(Table), [Shop] = max([Shop])), [Date]) , Countx(filter(allselected(Table), [Shop] = Max([Shop]) && [availability] =0 ), [Date]) , blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak 

 

Hi, thanks for help, however its not work. Instead show value 8 it show 13 = (8+5 from 2023-01-01 to 2023-01-10)

 

Can you check ? 

 

 

bjurek_0-1680606349254.png

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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