Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 ?
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |