Forum Discussion
Compare 2 Tables
- Anonymous1 year ago
Hi BarryFletcher , hello bhanu_gautam, thank you for your prompt reply!
We could use the following measure to check the missing subbmitted staff:MissingFlag = IF( NOT ( MAX('Staff List'[Staff Name]) IN CALCULATETABLE( VALUES('Timesheets'[Staff Name]), 'Timesheets'[Work Week] = SELECTEDVALUE('Timesheets'[Work Week]) ) ), 1, 0 )Then filter the staff table visual with MissingFlag=1:
Sample test for your reference:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous1 year ago
Hi BarryFletcher ,
Based on your data, switch to this measure:
MissingFlag = VAR SubmittedUserName=SUMMARIZE( FILTER(ALLSELECTED('Timesheet Hours'),'Timesheet Hours'[NewWorkWeek] = SELECTEDVALUE('Timesheet Hours'[NewWorkWeek])),'Timesheet Hours'[New Staff Name] ) VAR TAG=IF( NOT ( CONTAINSSTRING ( CONCATENATEX ( SubmittedUserName, 'Timesheet Hours'[New Staff Name], "," ), TRIM(MAX('BLS_Report'[New Staff Name])) ) ), 1, 0 ) RETURN TAGFor more detailed information, please check the attachment below.
Hi there,
Looking at the sample BI - the No submitted staff table doesn;t update regardless of which week number that is selected in the slicer? The only name that stays listed is "Jack"
Hi BarryFletcher,
The reason Jack has been listed in the ‘No Submitted Staff’ table is because he doesn't have a submission record for any week.
If I add a new row to the Submissions table, the corresponding data is as follows.
Result:
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- BarryFletcher1 year agoHelper III
Thanks for teh quick replies - I am still not seeing the tables change based on the slicer selection.
Sample of the BI here:
https://drive.google.com/file/d/1E7hccdP7xPaea5id-n_3UcrzZtoJiUa7/view?usp=drive_link
- Anonymous1 year agoNot applicable