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.
Hi All,Thankyou for your valuable time, here is a list of the resource who submitted the timesheets accordingly,please find a measure which gives resources list who were submitted timesheet for all the weeks in a month,if you see A & D are the list of resource who were submitted all the weeks in july month, i need that output and one more thing that database is not capturing the data of a resource who have not submitted timesheet in that particular month/week. here "Timeshet startdate" column is a date data type and it is from 2021 to till date,and updating everyday and it is a direct query mode,please find the exact format of my data in picture and please find a measure please.
@kollasv So something like:
Measure =
VAR __Start = DATE(2022,7,1)
VAR __End = DATE(2022,7,31)
VAR __Rows = FILTER('Table',[Timesheet start date]>=__Start && [Timesheet start date]<=__End)
VAR __Weeks = COUNTROWS(DISTINCT(SELECTCOLUMNS(__Rows,"__TSD",[Timesheet start date])))
VAR __Resources =
SUMMARIZE(__Rows,[Resource name],"__WeeksSubmitted", COUNTROWS(DISTINCT(SELECTCOLUMNS(__Rows,"__TSD",[Timesheet start date]))))
RETURN
CONCATENATEX(FILTER(__Resources, [__WeeksSubmitted] = __Weeks),"[Resource name],",")
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 |