Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello!
Anybody knows how calculate "How many times in a row there is no availability counted from the last date"
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:
@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())
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 ?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
8 |
User | Count |
---|---|
13 | |
12 | |
11 | |
10 | |
9 |