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.
Measure =
var _sdate = MAX(TableA[Shift_start_date])
var _edate = MAX(TableA[Shift_end_date])
var _count =
COUNTROWS(
FILTER('TableB'[DateTime]>=_sdate && 'TableB'[Datetime]<=_edate))
return
IF(ISBLANK(_count),0,_count)
Hi Guys
I hope you can help me, I am trying to calcucate number of occurrences on multiple days.
The above formula is generating the right output if I put it into a table for a daily view but if I wants to calcucate the number of occurrences in a week then it also shows the last output (Which is due to the MAX()), so can you help?
Anyone? 🙂
hi @oskarcph
when you say "calcucate the number of occurrences in a week ", could you make a screenshot about how the measure will be showcased? what context do you have for the measure?
p.s. please consider @someone, to continue a discussion.
hi @oskarcph
when you say "calcucate the number of occurrences in a week ", could you make a screenshot about how the measure will be showcased?
Hi Freeman, sorry for the late reply
So, I need to see if a flight leaves during an employee's shift, I made a column with the date and time of the flight's departure to link up with the employees shift which consist of two columns (See picture), a shift can example start at 22:00 monday and end at 06:00 on the next day
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |